Merge branch 'sreiser/develop' of https://git.eclipse.org/r/app4mc/org.eclipse.app4mc.addon.transformation into sreiser/develop
Signed-off-by: Sebastian Reiser <Sebastian.Reiser@de.bosch.com>
diff --git a/framework/examples/app4mc.example.transform.cust.product/CustTransformation.product b/framework/examples/app4mc.example.transform.cust.product/CustTransformation.product
index d855cfc..3486641 100644
--- a/framework/examples/app4mc.example.transform.cust.product/CustTransformation.product
+++ b/framework/examples/app4mc.example.transform.cust.product/CustTransformation.product
@@ -9,7 +9,7 @@
<launcherArgs>
<programArgs>--properties "${project_loc:/app4mc.example.transform.cust.product}/customInput.properties" -console
</programArgs>
- <vmArgs>-Declipse.ignoreApp=true -Dosgi.noShutdown=true -Dlog4j.configuration=headless_log4j.xml
+ <vmArgs>-Declipse.ignoreApp=true -Dosgi.noShutdown=true -Dorg.eclipse.emf.ecore.EPackage.Registry.INSTANCE=org.eclipse.emf.ecore.impl.EPackageRegistryImpl
</vmArgs>
<vmArgsMac>-XstartOnFirstThread -Dorg.eclipse.swt.internal.carbon.smallFonts
</vmArgsMac>
@@ -40,11 +40,12 @@
<plugin id="org.apache.felix.gogo.runtime"/>
<plugin id="org.apache.felix.gogo.shell"/>
<plugin id="org.apache.felix.scr"/>
- <plugin id="org.apache.log4j"/>
<plugin id="org.eclipse.app4mc.amalthea.model"/>
<plugin id="org.eclipse.app4mc.transformation"/>
- <plugin id="org.eclipse.app4mc.transformation.log4j.configuration" fragment="true"/>
<plugin id="org.eclipse.app4mc.transformation.starter"/>
+ <plugin id="org.eclipse.app4mc.util.sessionlog"/>
+ <plugin id="org.eclipse.app4mc.util.sessionlog.console"/>
+ <plugin id="org.eclipse.app4mc.util.sessionlog.file"/>
<plugin id="org.eclipse.emf.common"/>
<plugin id="org.eclipse.emf.ecore"/>
<plugin id="org.eclipse.emf.ecore.xcore.lib"/>
@@ -58,14 +59,14 @@
<plugin id="org.eclipse.osgi.util"/>
<plugin id="org.eclipse.xtext.xbase.lib"/>
<plugin id="org.slf4j.api"/>
- <plugin id="org.slf4j.impl.log4j12" fragment="true"/>
</plugins>
<configurations>
<plugin id="org.apache.felix.scr" autoStart="true" startLevel="2" />
+ <plugin id="org.eclipse.app4mc.util.sessionlog.console" autoStart="true" startLevel="3" />
+ <plugin id="org.eclipse.app4mc.util.sessionlog.file" autoStart="true" startLevel="3" />
<plugin id="org.eclipse.equinox.cm" autoStart="true" startLevel="2" />
<plugin id="org.eclipse.equinox.event" autoStart="true" startLevel="2" />
- <property name="log4j.configuration" value="headless_log4j.xml" />
<property name="app4mctransformation.log.level" value="debug" />
</configurations>
diff --git a/framework/examples/app4mc.example.transform.m2m/META-INF/MANIFEST.MF b/framework/examples/app4mc.example.transform.m2m/META-INF/MANIFEST.MF
index f8916b2..0503d13 100644
--- a/framework/examples/app4mc.example.transform.m2m/META-INF/MANIFEST.MF
+++ b/framework/examples/app4mc.example.transform.m2m/META-INF/MANIFEST.MF
@@ -10,17 +10,14 @@
Automatic-Module-Name: app4mc.example.transform.m2m
Import-Package: com.google.inject;version="1.3.0",
com.google.inject.util;version="1.3.0",
- javax.inject;version="1.0.0",
org.eclipse.app4mc.transformation,
- org.eclipse.app4mc.transformation.executiontype,
org.eclipse.app4mc.transformation.starter,
org.eclipse.app4mc.transformation.transformers,
org.eclipse.app4mc.transformation.util,
+ org.eclipse.app4mc.util.sessionlog;version="1.1.0",
org.osgi.service.component;version="1.4.0",
- org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional,
- org.slf4j;version="1.7.2"
+ org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional
Bundle-ActivationPolicy: lazy
Bundle-ClassPath: .
Service-Component: OSGI-INF/app4mc.example.transform.m2m.configuration.AmaltheaModel2ModelTransformationDefinition.xml,
- OSGI-INF/app4mc.example.transform.m2m.configuration.M2MTransformationConfig.xml,
OSGI-INF/app4mc.example.transform.m2m.transformers.ExampleModel2ModelTransformer.xml
diff --git a/framework/examples/app4mc.example.transform.m2m/OSGI-INF/app4mc.example.transform.m2m.configuration.M2MTransformationConfig.xml b/framework/examples/app4mc.example.transform.m2m/OSGI-INF/app4mc.example.transform.m2m.configuration.M2MTransformationConfig.xml
deleted file mode 100644
index 2594218..0000000
--- a/framework/examples/app4mc.example.transform.m2m/OSGI-INF/app4mc.example.transform.m2m.configuration.M2MTransformationConfig.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.2.0" activate="activate" configuration-pid="TRANSFORMATION_SESSION_CONFIG" configuration-policy="require" name="app4mc.example.transform.m2m.configuration.M2MTransformationConfig">
- <property name="transformation" value="Amalthea2SampleModel"/>
- <service>
- <provide interface="org.eclipse.app4mc.transformation.executiontype.IModelToModelConfig"/>
- </service>
- <implementation class="app4mc.example.transform.m2m.configuration.M2MTransformationConfig"/>
-</scr:component>
\ No newline at end of file
diff --git a/framework/examples/app4mc.example.transform.m2m/src/app4mc/example/transform/m2m/configuration/M2MTransformationConfig.java b/framework/examples/app4mc.example.transform.m2m/src/app4mc/example/transform/m2m/configuration/M2MTransformationConfig.java
deleted file mode 100644
index 1306d9b..0000000
--- a/framework/examples/app4mc.example.transform.m2m/src/app4mc/example/transform/m2m/configuration/M2MTransformationConfig.java
+++ /dev/null
@@ -1,88 +0,0 @@
-/**
- ********************************************************************************
- * Copyright (c) 2018-2021 Robert Bosch GmbH and others.
- *
- * This program and the accompanying materials are made
- * available under the terms of the Eclipse Public License 2.0
- * which is available at https://www.eclipse.org/legal/epl-2.0/
- *
- * SPDX-License-Identifier: EPL-2.0
- *
- * Contributors:
- * Robert Bosch GmbH - initial API and implementation
- ********************************************************************************
- */
-
-package app4mc.example.transform.m2m.configuration;
-
-import java.util.Map;
-
-import org.eclipse.app4mc.amalthea.model.AmaltheaFactory;
-import org.eclipse.app4mc.transformation.ServiceConstants;
-import org.eclipse.app4mc.transformation.executiontype.IModelToModelConfig;
-import org.eclipse.emf.ecore.resource.Resource;
-import org.eclipse.emf.ecore.resource.ResourceSet;
-import org.eclipse.emf.ecore.resource.impl.ResourceSetImpl;
-import org.eclipse.emf.ecore.xmi.impl.XMIResourceFactoryImpl;
-import org.osgi.service.component.annotations.Activate;
-import org.osgi.service.component.annotations.Component;
-import org.osgi.service.component.annotations.ConfigurationPolicy;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
-import app4mc.example.transform.m2m.loader.AmaltheaMultiFileLoader;
-import app4mc.example.transform.m2m.loader.IMultiFileLoader;
-import app4mc.example.transform.samplemodel.SampleModelPackage;
-
-@Component(
- configurationPid = ServiceConstants.SESSION_CONFIGURATION_PID,
- configurationPolicy = ConfigurationPolicy.REQUIRE,
- property = { ServiceConstants.TRANSFORMATION_PROPERTY + "=Amalthea2SampleModel" },
- service = IModelToModelConfig.class)
-
-public class M2MTransformationConfig implements IModelToModelConfig {
-
- private static final Logger LOG = LoggerFactory.getLogger(M2MTransformationConfig.class);
-
- private IMultiFileLoader amaltheaMultiFileLoader = new AmaltheaMultiFileLoader();
-
- private String folderPath;
-
- @Activate
- void activate(Map<String, ?> properties) {
- folderPath = (String) properties.get("input_models_folder");
- }
-
- public ResourceSet getInputResourceSet() {
-
- if (folderPath != null) {
-
- ResourceSet resourceSet = amaltheaMultiFileLoader.loadMultipleFiles(folderPath);
-
- if (resourceSet.getResources().isEmpty()) {
- LOG.error("No Amalthea model files are loaded. Verify if the model version is : {}",
- AmaltheaFactory.eINSTANCE.createAmalthea().getVersion());
- }
-
- return resourceSet;
- } else {
- LOG.error("Input_models_folder parameter not set",
- new NullPointerException("input_models_folder property not set"));
- }
-
- return null;
- }
-
- public ResourceSet getOuputResourceSet() {
-
- ResourceSet outputRurceSet = new ResourceSetImpl();
-
- outputRurceSet.getResourceFactoryRegistry().getExtensionToFactoryMap()
- .put(Resource.Factory.Registry.DEFAULT_EXTENSION, new XMIResourceFactoryImpl());
-
- outputRurceSet.getPackageRegistry().put(SampleModelPackage.eNS_URI, SampleModelPackage.eINSTANCE);
-
- return outputRurceSet;
- }
-
-}
diff --git a/framework/examples/app4mc.example.transform.m2m/src/app4mc/example/transform/m2m/loader/AmaltheaMultiFileLoader.java b/framework/examples/app4mc.example.transform.m2m/src/app4mc/example/transform/m2m/loader/AmaltheaMultiFileLoader.java
deleted file mode 100644
index cfd15ee..0000000
--- a/framework/examples/app4mc.example.transform.m2m/src/app4mc/example/transform/m2m/loader/AmaltheaMultiFileLoader.java
+++ /dev/null
@@ -1,90 +0,0 @@
-/**
- ********************************************************************************
- * Copyright (c) 2018-2021 Robert Bosch GmbH and others.
- *
- * This program and the accompanying materials are made
- * available under the terms of the Eclipse Public License 2.0
- * which is available at https://www.eclipse.org/legal/epl-2.0/
- *
- * SPDX-License-Identifier: EPL-2.0
- *
- * Contributors:
- * Robert Bosch GmbH - initial API and implementation
- ********************************************************************************
- */
-
-package app4mc.example.transform.m2m.loader;
-
-import java.io.File;
-import java.io.IOException;
-import java.util.ArrayList;
-import java.util.List;
-
-import org.eclipse.app4mc.amalthea.model.Amalthea;
-import org.eclipse.app4mc.amalthea.model.AmaltheaPackage;
-import org.eclipse.app4mc.amalthea.model.emf.AmaltheaResourceFactory;
-import org.eclipse.app4mc.amalthea.model.emf.AmaltheaResourceSetImpl;
-import org.eclipse.emf.common.util.URI;
-import org.eclipse.emf.ecore.EObject;
-import org.eclipse.emf.ecore.resource.Resource;
-import org.eclipse.emf.ecore.resource.ResourceSet;
-import org.eclipse.emf.ecore.resource.impl.ResourceSetImpl;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
-/**
- * AmaltheaMultiFileLoader
- *
- * Should be replaced by standard AmaltheaLoader (APP4MC version > 1.0.0)
- *
- */
-public class AmaltheaMultiFileLoader implements IMultiFileLoader {
-
- private static final Logger LOG = LoggerFactory.getLogger(AmaltheaMultiFileLoader.class);
-
- public ResourceSet loadMultipleFiles(String directoryPath) {
-
- File folder = new File(directoryPath);
-
- if (folder.isDirectory()) {
- File[] listFiles = folder.listFiles((file, name) -> name.endsWith(".amxmi"));
-
- ResourceSet resourceSet = initializeResourceSet();
- loadMultipleFiles(resourceSet, listFiles);
- return resourceSet;
- }
-
- return new ResourceSetImpl();
-
- }
-
- private List<Amalthea> loadMultipleFiles(ResourceSet resourceSet, File[] listFiles) {
-
- List<Amalthea> models = new ArrayList<>();
-
- for (File amxmiFile : listFiles) {
-
- final Resource res = resourceSet.createResource(URI.createURI("file:////" + amxmiFile.getAbsolutePath()));
- try {
- res.load(null);
- for (final EObject content : res.getContents()) {
- if (content instanceof Amalthea) {
- models.add((Amalthea) content);
- }
- }
- } catch (IOException e) {
- LOG.error(e.getMessage(),e);
- }
- }
- return models;
- }
-
- private static ResourceSet initializeResourceSet() {
- final AmaltheaResourceSetImpl resSet = new AmaltheaResourceSetImpl();
- resSet.getResourceFactoryRegistry().getExtensionToFactoryMap().put("amxmi", new AmaltheaResourceFactory());
- AmaltheaPackage.eINSTANCE.eClass(); // register the package
-
- return resSet;
- }
-
-}
diff --git a/framework/examples/app4mc.example.transform.m2m/src/app4mc/example/transform/m2m/loader/IMultiFileLoader.java b/framework/examples/app4mc.example.transform.m2m/src/app4mc/example/transform/m2m/loader/IMultiFileLoader.java
deleted file mode 100644
index e00a7d6..0000000
--- a/framework/examples/app4mc.example.transform.m2m/src/app4mc/example/transform/m2m/loader/IMultiFileLoader.java
+++ /dev/null
@@ -1,23 +0,0 @@
-/**
- ********************************************************************************
- * Copyright (c) 2018-2021 Robert Bosch GmbH and others.
- *
- * This program and the accompanying materials are made
- * available under the terms of the Eclipse Public License 2.0
- * which is available at https://www.eclipse.org/legal/epl-2.0/
- *
- * SPDX-License-Identifier: EPL-2.0
- *
- * Contributors:
- * Robert Bosch GmbH - initial API and implementation
- ********************************************************************************
- */
-
-package app4mc.example.transform.m2m.loader;
-
-import org.eclipse.emf.ecore.resource.ResourceSet;
-
-public interface IMultiFileLoader {
-
- public ResourceSet loadMultipleFiles(String directoryPath);
-}
diff --git a/framework/examples/app4mc.example.transform.m2m/src/app4mc/example/transform/m2m/transformers/ExampleModel2ModelTransformer.java b/framework/examples/app4mc.example.transform.m2m/src/app4mc/example/transform/m2m/transformers/ExampleModel2ModelTransformer.java
index d212993..d0b3fc3 100644
--- a/framework/examples/app4mc.example.transform.m2m/src/app4mc/example/transform/m2m/transformers/ExampleModel2ModelTransformer.java
+++ b/framework/examples/app4mc.example.transform.m2m/src/app4mc/example/transform/m2m/transformers/ExampleModel2ModelTransformer.java
@@ -24,28 +24,27 @@
import org.eclipse.app4mc.amalthea.model.Amalthea;
import org.eclipse.app4mc.amalthea.model.HWModel;
import org.eclipse.app4mc.transformation.ServiceConstants;
-import org.eclipse.app4mc.transformation.TransformationConstants;
import org.eclipse.app4mc.transformation.transformers.Model2ModelRootTransformer;
-import org.eclipse.app4mc.transformation.util.PropertyUtil;
+import org.eclipse.app4mc.transformation.util.TransformationGuiceModule;
import org.eclipse.emf.common.util.URI;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.resource.Resource;
import org.eclipse.emf.ecore.resource.ResourceSet;
+import org.eclipse.emf.ecore.resource.impl.ResourceSetImpl;
+import org.eclipse.emf.ecore.xmi.impl.XMIResourceFactoryImpl;
import org.eclipse.xtext.xbase.lib.CollectionLiterals;
import org.eclipse.xtext.xbase.lib.Exceptions;
import org.osgi.service.component.annotations.Activate;
import org.osgi.service.component.annotations.Component;
import org.osgi.service.component.annotations.ConfigurationPolicy;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
import com.google.inject.Guice;
import com.google.inject.Injector;
-import com.google.inject.util.Modules;
import app4mc.example.transform.m2m.transformers.hw.ExampleHwTransformer;
import app4mc.example.transform.samplemodel.Model;
import app4mc.example.transform.samplemodel.SampleModelFactory;
+import app4mc.example.transform.samplemodel.SampleModelPackage;
@Component(
configurationPid = ServiceConstants.SESSION_CONFIGURATION_PID,
@@ -53,47 +52,54 @@
property = { ServiceConstants.TRANSFORMATION_PROPERTY + "=Amalthea2SampleModel" },
service = Model2ModelRootTransformer.class
)
-
public class ExampleModel2ModelTransformer extends Model2ModelRootTransformer {
- private static final Logger LOG = LoggerFactory.getLogger(ExampleModel2ModelTransformer.class);
/**
* - Factory initialization
*/
private static final SampleModelFactory outputModelFactory = SampleModelFactory.eINSTANCE;
- private String outputFolder;
private final HashMap<ArrayList<?>, Model> transformCache = CollectionLiterals.newHashMap();
-
+
@Activate
- void activate(final Map<String, ?> properties) {
- LOG.debug("ExampleModel2ModelTransformer activated");
-
- outputFolder = PropertyUtil.getProperty(TransformationConstants.M2M_OUTPUT_FOLDER, properties);
+ @Override
+ protected void activate(final Map<String, ?> properties) {
+ super.activate(properties);
}
@Override
- public void m2mTransformation(final ResourceSet inputResourceSet, final ResourceSet outputResourceSet) {
+ public ResourceSet getOutputResourceSet() {
+
+ ResourceSet outputResourceSet = new ResourceSetImpl();
+
+ outputResourceSet.getResourceFactoryRegistry().getExtensionToFactoryMap()
+ .put(Resource.Factory.Registry.DEFAULT_EXTENSION, new XMIResourceFactoryImpl());
+
+ outputResourceSet.getPackageRegistry().put(SampleModelPackage.eNS_URI, SampleModelPackage.eINSTANCE);
+
+ return outputResourceSet;
+ }
+
+ @Override
+ public void m2mTransformation() {
try {
- Injector injector = Guice.createInjector(Modules.EMPTY_MODULE);
-
+ Injector injector = Guice.createInjector(new TransformationGuiceModule(logger));
+
ExampleHwTransformer hardwareTransformer = injector.getInstance(ExampleHwTransformer.class);
- LOG.debug("ExampleHwTransformer : {}", Integer.valueOf(hardwareTransformer.hashCode()));
-
int fileIndex = 1;
- for (final Resource inputResource : inputResourceSet.getResources()) {
+ for (final Resource inputResource : getInputResourceSet(getInputFolder(), logger).getResources()) {
for (final EObject content : inputResource.getContents()) {
- LOG.info("Processing file : {}", inputResource.getURI());
+ logger.info("Processing file : {0}", inputResource.getURI());
final Model simulationModelRoot = transform((Amalthea) content, hardwareTransformer);
- URI uri = URI.createFileURI(outputFolder + File.separator + Integer.valueOf(fileIndex++) + ".root");
- final Resource outputResource = outputResourceSet.createResource(uri);
+ URI uri = URI.createFileURI(getOutputFolder() + File.separator + Integer.valueOf(fileIndex++) + ".root");
+ final Resource outputResource = getOutputResourceSet().createResource(uri);
outputResource.getContents().add(simulationModelRoot);
outputResource.save(null);
- LOG.info("Transformed model file generated at : {}", uri);
+ logger.info("Transformed model file generated at : {0}", uri);
}
}
} catch (IOException e) {
diff --git a/framework/examples/app4mc.example.transform.m2m/src/app4mc/example/transform/m2m/transformers/hw/ExampleHwTransformer.java b/framework/examples/app4mc.example.transform.m2m/src/app4mc/example/transform/m2m/transformers/hw/ExampleHwTransformer.java
index ccc08e0..99ef97d 100644
--- a/framework/examples/app4mc.example.transform.m2m/src/app4mc/example/transform/m2m/transformers/hw/ExampleHwTransformer.java
+++ b/framework/examples/app4mc.example.transform.m2m/src/app4mc/example/transform/m2m/transformers/hw/ExampleHwTransformer.java
@@ -22,8 +22,7 @@
import org.eclipse.app4mc.amalthea.model.Memory;
import org.eclipse.app4mc.amalthea.model.ProcessingUnit;
import org.eclipse.app4mc.amalthea.model.StructureType;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
+import org.eclipse.app4mc.util.sessionlog.SessionLogger;
import com.google.inject.Inject;
import com.google.inject.Singleton;
@@ -32,7 +31,9 @@
@Singleton
public class ExampleHwTransformer {
- private static final Logger LOG = LoggerFactory.getLogger(ExampleHwTransformer.class);
+
+ @Inject
+ private SessionLogger logger;
@Inject
private ExampleMemoryTransformer memoryTransformer;
@@ -81,7 +82,7 @@
} else if (hwModule instanceof ProcessingUnit) {
ProcessingUnit amPU = (ProcessingUnit) hwModule;
- LOG.info("Transforming PU : {}", amPU);
+ logger.info("Transforming PU : {0}", amPU);
processingUnitTransformer.transfrom(amPU, outputModel);
}
}
diff --git a/framework/examples/app4mc.example.transform.m2m/src/app4mc/example/transform/m2m/transformers/hw/ExampleProcessingUnitTransformer.java b/framework/examples/app4mc.example.transform.m2m/src/app4mc/example/transform/m2m/transformers/hw/ExampleProcessingUnitTransformer.java
index d9657b4..09595d5 100644
--- a/framework/examples/app4mc.example.transform.m2m/src/app4mc/example/transform/m2m/transformers/hw/ExampleProcessingUnitTransformer.java
+++ b/framework/examples/app4mc.example.transform.m2m/src/app4mc/example/transform/m2m/transformers/hw/ExampleProcessingUnitTransformer.java
@@ -21,8 +21,7 @@
import org.eclipse.app4mc.amalthea.model.Cache;
import org.eclipse.app4mc.amalthea.model.HwAccessElement;
import org.eclipse.app4mc.amalthea.model.ProcessingUnit;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
+import org.eclipse.app4mc.util.sessionlog.SessionLogger;
import com.google.inject.Inject;
import com.google.inject.Singleton;
@@ -31,7 +30,9 @@
@Singleton
public class ExampleProcessingUnitTransformer {
- private static final Logger LOG = LoggerFactory.getLogger(ExampleProcessingUnitTransformer.class);
+
+ @Inject
+ private SessionLogger logger;
@Inject
private ExampleCacheTransformer cacheTransformer;
@@ -56,7 +57,7 @@
for (Cache referredCache : referredCaches) {
final app4mc.example.transform.samplemodel.Cache outputCache = cacheTransformer.transfrom(referredCache);
- LOG.info("Cache referred in path elements is : {}", outputCache);
+ logger.info("Cache referred in path elements is : {0}", outputCache);
}
}
}
diff --git a/framework/examples/app4mc.example.transform.m2t.cust/META-INF/MANIFEST.MF b/framework/examples/app4mc.example.transform.m2t.cust/META-INF/MANIFEST.MF
index 959df3e..af743f6 100644
--- a/framework/examples/app4mc.example.transform.m2t.cust/META-INF/MANIFEST.MF
+++ b/framework/examples/app4mc.example.transform.m2t.cust/META-INF/MANIFEST.MF
@@ -10,12 +10,11 @@
com.google.inject;version="1.3.0",
com.google.inject.binder;version="1.3.0",
org.eclipse.app4mc.transformation,
- org.eclipse.app4mc.transformation.executiontype,
org.eclipse.app4mc.transformation.starter,
org.eclipse.app4mc.transformation.transformers,
org.eclipse.app4mc.transformation.util,
- org.osgi.service.component.annotations;version="1.3.0";resolution:=optional,
- org.slf4j;version="1.7.2"
+ org.eclipse.app4mc.util.sessionlog;version="1.1.0",
+ org.osgi.service.component.annotations;version="1.3.0";resolution:=optional
Export-Package: app4mc.example.transform.m2t.cust.transformers
Bundle-ActivationPolicy: lazy
Bundle-Vendor: Eclipse APP4MC
diff --git a/framework/examples/app4mc.example.transform.m2t.cust/src/app4mc/example/transform/m2t/cust/module/CustExampleGuiceModule.java b/framework/examples/app4mc.example.transform.m2t.cust/src/app4mc/example/transform/m2t/cust/module/CustExampleGuiceModule.java
index 7a83d7b..ef40ccd 100644
--- a/framework/examples/app4mc.example.transform.m2t.cust/src/app4mc/example/transform/m2t/cust/module/CustExampleGuiceModule.java
+++ b/framework/examples/app4mc.example.transform.m2t.cust/src/app4mc/example/transform/m2t/cust/module/CustExampleGuiceModule.java
@@ -1,6 +1,6 @@
/**
********************************************************************************
- * Copyright (c) 2020 Robert Bosch GmbH.
+ * Copyright (c) 2020, 2021 Robert Bosch GmbH.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
@@ -15,12 +15,18 @@
package app4mc.example.transform.m2t.cust.module;
+import org.eclipse.app4mc.util.sessionlog.SessionLogger;
+
import app4mc.example.transform.m2t.cust.transformers.CustTransformer;
import app4mc.example.transform.m2t.transformers.ExampleGuiceModule;
import app4mc.example.transform.m2t.transformers.ExampleTransformer;
public class CustExampleGuiceModule extends ExampleGuiceModule {
+ public CustExampleGuiceModule(SessionLogger logger) {
+ super(logger);
+ }
+
@Override
protected void configure() {
super.configure();
diff --git a/framework/examples/app4mc.example.transform.m2t.cust/src/app4mc/example/transform/m2t/cust/module/CustExampleGuiceModuleFactory.java b/framework/examples/app4mc.example.transform.m2t.cust/src/app4mc/example/transform/m2t/cust/module/CustExampleGuiceModuleFactory.java
index 650a341..e87cd80 100644
--- a/framework/examples/app4mc.example.transform.m2t.cust/src/app4mc/example/transform/m2t/cust/module/CustExampleGuiceModuleFactory.java
+++ b/framework/examples/app4mc.example.transform.m2t.cust/src/app4mc/example/transform/m2t/cust/module/CustExampleGuiceModuleFactory.java
@@ -1,6 +1,6 @@
/**
********************************************************************************
- * Copyright (c) 2020 Robert Bosch GmbH.
+ * Copyright (c) 2020, 2021 Robert Bosch GmbH.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
@@ -15,6 +15,7 @@
package app4mc.example.transform.m2t.cust.module;
+import org.eclipse.app4mc.util.sessionlog.SessionLogger;
import org.osgi.service.component.annotations.Component;
import app4mc.example.transform.m2t.transformers.ExampleGuiceModuleFactory;
@@ -24,10 +25,10 @@
service= ExampleGuiceModuleFactory.class
)
public class CustExampleGuiceModuleFactory extends ExampleGuiceModuleFactory {
-
+
@Override
- public CustExampleGuiceModule getModule() {
- return new CustExampleGuiceModule();
+ public CustExampleGuiceModule getModule(SessionLogger logger) {
+ return new CustExampleGuiceModule(logger);
}
}
diff --git a/framework/examples/app4mc.example.transform.m2t.cust/src/app4mc/example/transform/m2t/cust/transformers/CustTransformer.java b/framework/examples/app4mc.example.transform.m2t.cust/src/app4mc/example/transform/m2t/cust/transformers/CustTransformer.java
index fa7e6b3..d5344cc 100644
--- a/framework/examples/app4mc.example.transform.m2t.cust/src/app4mc/example/transform/m2t/cust/transformers/CustTransformer.java
+++ b/framework/examples/app4mc.example.transform.m2t.cust/src/app4mc/example/transform/m2t/cust/transformers/CustTransformer.java
@@ -17,8 +17,6 @@
import org.eclipse.app4mc.amalthea.model.Amalthea;
import org.eclipse.app4mc.transformation.util.OutputBuffer;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
import com.google.inject.Singleton;
@@ -26,12 +24,10 @@
@Singleton
public class CustTransformer extends ExampleTransformer {
-
- private static final Logger LOG = LoggerFactory.getLogger(CustTransformer.class);
-
+
@Override
public void generateOutput1(final Amalthea amalthea, final OutputBuffer outputBuffer) {
- LOG.info(" - executing CustTransformer.generateOutput1");
+ logger.info(" - executing CustTransformer.generateOutput1");
outputBuffer.appendTo("TEXT", "1", "Customer template\n");
super.generateOutput1(amalthea, outputBuffer);
@@ -39,7 +35,7 @@
@Override
public void generateOutput2(final Amalthea amalthea, final OutputBuffer outputBuffer) {
- LOG.info(" - executing CustTransformer.generateOutput2");
+ logger.info(" - executing CustTransformer.generateOutput2");
outputBuffer.appendTo("TEXT", "2", "Customer template\n");
super.generateOutput2(amalthea, outputBuffer);
diff --git a/framework/examples/app4mc.example.transform.m2t/META-INF/MANIFEST.MF b/framework/examples/app4mc.example.transform.m2t/META-INF/MANIFEST.MF
index eb76402..e1c5aa8 100644
--- a/framework/examples/app4mc.example.transform.m2t/META-INF/MANIFEST.MF
+++ b/framework/examples/app4mc.example.transform.m2t/META-INF/MANIFEST.MF
@@ -9,19 +9,16 @@
Automatic-Module-Name: app4mc.example.transform.m2t
Bundle-ActivationPolicy: lazy
Import-Package: com.google.inject;version="1.3.0",
+ com.google.inject.binder;version="1.3.0",
org.eclipse.app4mc.transformation,
- org.eclipse.app4mc.transformation.executiontype,
org.eclipse.app4mc.transformation.starter,
org.eclipse.app4mc.transformation.transformers,
org.eclipse.app4mc.transformation.util,
+ org.eclipse.app4mc.util.sessionlog;version="1.1.0",
org.osgi.service.component;version="1.4.0",
- org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional,
- org.slf4j;version="1.7.2"
-Export-Package: app4mc.example.transform.m2t.configuration,
- app4mc.example.transform.m2t.loader,
- app4mc.example.transform.m2t.transformers
+ org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional
+Export-Package: app4mc.example.transform.m2t.transformers
Bundle-ClassPath: .
-Service-Component: OSGI-INF/app4mc.example.transform.m2t.configuration.M2TTransformationDefinition.xml,
- OSGI-INF/app4mc.example.transform.m2t.configuration.M2TTransformationConfig.xml,
- OSGI-INF/app4mc.example.transform.m2t.transformers.ExampleModel2TextTransformer.xml,
+Service-Component: OSGI-INF/app4mc.example.transform.m2t.M2TTransformationDefinition.xml,
+ OSGI-INF/app4mc.example.transform.m2t.ExampleModel2TextTransformer.xml,
OSGI-INF/app4mc.example.transform.m2t.transformers.ExampleGuiceModuleFactory.xml
diff --git a/framework/examples/app4mc.example.transform.m2t/OSGI-INF/app4mc.example.transform.m2t.transformers.ExampleModel2TextTransformer.xml b/framework/examples/app4mc.example.transform.m2t/OSGI-INF/app4mc.example.transform.m2t.ExampleModel2TextTransformer.xml
similarity index 79%
rename from framework/examples/app4mc.example.transform.m2t/OSGI-INF/app4mc.example.transform.m2t.transformers.ExampleModel2TextTransformer.xml
rename to framework/examples/app4mc.example.transform.m2t/OSGI-INF/app4mc.example.transform.m2t.ExampleModel2TextTransformer.xml
index 15375c6..5cb040f 100644
--- a/framework/examples/app4mc.example.transform.m2t/OSGI-INF/app4mc.example.transform.m2t.transformers.ExampleModel2TextTransformer.xml
+++ b/framework/examples/app4mc.example.transform.m2t/OSGI-INF/app4mc.example.transform.m2t.ExampleModel2TextTransformer.xml
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" configuration-pid="TRANSFORMATION_SESSION_CONFIG" configuration-policy="require" name="app4mc.example.transform.m2t.transformers.ExampleModel2TextTransformer">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" configuration-pid="TRANSFORMATION_SESSION_CONFIG" configuration-policy="require" name="app4mc.example.transform.m2t.ExampleModel2TextTransformer">
<property name="transformation" value="Amalthea2Text"/>
<service>
<provide interface="org.eclipse.app4mc.transformation.transformers.Model2TextRootTransformer"/>
</service>
<reference cardinality="1..1" field="factory" interface="app4mc.example.transform.m2t.transformers.ExampleGuiceModuleFactory" name="factory"/>
- <implementation class="app4mc.example.transform.m2t.transformers.ExampleModel2TextTransformer"/>
+ <implementation class="app4mc.example.transform.m2t.ExampleModel2TextTransformer"/>
</scr:component>
\ No newline at end of file
diff --git a/framework/examples/app4mc.example.transform.m2t/OSGI-INF/app4mc.example.transform.m2t.M2TTransformationDefinition.xml b/framework/examples/app4mc.example.transform.m2t/OSGI-INF/app4mc.example.transform.m2t.M2TTransformationDefinition.xml
new file mode 100644
index 0000000..45b3a96
--- /dev/null
+++ b/framework/examples/app4mc.example.transform.m2t/OSGI-INF/app4mc.example.transform.m2t.M2TTransformationDefinition.xml
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" name="app4mc.example.transform.m2t.M2TTransformationDefinition">
+ <service>
+ <provide interface="org.eclipse.app4mc.transformation.TransformationDefinition"/>
+ </service>
+ <implementation class="app4mc.example.transform.m2t.M2TTransformationDefinition"/>
+</scr:component>
\ No newline at end of file
diff --git a/framework/examples/app4mc.example.transform.m2t/OSGI-INF/app4mc.example.transform.m2t.configuration.M2TTransformationConfig.xml b/framework/examples/app4mc.example.transform.m2t/OSGI-INF/app4mc.example.transform.m2t.configuration.M2TTransformationConfig.xml
deleted file mode 100644
index d3b7f58..0000000
--- a/framework/examples/app4mc.example.transform.m2t/OSGI-INF/app4mc.example.transform.m2t.configuration.M2TTransformationConfig.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.2.0" activate="activate" configuration-pid="TRANSFORMATION_SESSION_CONFIG" configuration-policy="require" name="app4mc.example.transform.m2t.configuration.M2TTransformationConfig">
- <property name="transformation" value="Amalthea2Text"/>
- <service>
- <provide interface="org.eclipse.app4mc.transformation.executiontype.IModelToTextConfig"/>
- </service>
- <implementation class="app4mc.example.transform.m2t.configuration.M2TTransformationConfig"/>
-</scr:component>
\ No newline at end of file
diff --git a/framework/examples/app4mc.example.transform.m2t/OSGI-INF/app4mc.example.transform.m2t.configuration.M2TTransformationDefinition.xml b/framework/examples/app4mc.example.transform.m2t/OSGI-INF/app4mc.example.transform.m2t.configuration.M2TTransformationDefinition.xml
deleted file mode 100644
index ae98116..0000000
--- a/framework/examples/app4mc.example.transform.m2t/OSGI-INF/app4mc.example.transform.m2t.configuration.M2TTransformationDefinition.xml
+++ /dev/null
@@ -1,7 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.1.0" name="app4mc.example.transform.m2t.configuration.M2TTransformationDefinition">
- <service>
- <provide interface="org.eclipse.app4mc.transformation.TransformationDefinition"/>
- </service>
- <implementation class="app4mc.example.transform.m2t.configuration.M2TTransformationDefinition"/>
-</scr:component>
\ No newline at end of file
diff --git a/framework/examples/app4mc.example.transform.m2t/src/app4mc/example/transform/m2t/transformers/ExampleModel2TextTransformer.java b/framework/examples/app4mc.example.transform.m2t/src/app4mc/example/transform/m2t/ExampleModel2TextTransformer.java
similarity index 68%
rename from framework/examples/app4mc.example.transform.m2t/src/app4mc/example/transform/m2t/transformers/ExampleModel2TextTransformer.java
rename to framework/examples/app4mc.example.transform.m2t/src/app4mc/example/transform/m2t/ExampleModel2TextTransformer.java
index b7540ac..779cbc6 100644
--- a/framework/examples/app4mc.example.transform.m2t/src/app4mc/example/transform/m2t/transformers/ExampleModel2TextTransformer.java
+++ b/framework/examples/app4mc.example.transform.m2t/src/app4mc/example/transform/m2t/ExampleModel2TextTransformer.java
@@ -13,29 +13,27 @@
********************************************************************************
*/
-package app4mc.example.transform.m2t.transformers;
+package app4mc.example.transform.m2t;
import java.util.Map;
import org.eclipse.app4mc.amalthea.model.Amalthea;
import org.eclipse.app4mc.transformation.ServiceConstants;
-import org.eclipse.app4mc.transformation.TransformationConstants;
import org.eclipse.app4mc.transformation.transformers.Model2TextRootTransformer;
import org.eclipse.app4mc.transformation.util.OutputBuffer;
-import org.eclipse.app4mc.transformation.util.PropertyUtil;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.resource.Resource;
-import org.eclipse.emf.ecore.resource.ResourceSet;
import org.osgi.service.component.annotations.Activate;
import org.osgi.service.component.annotations.Component;
import org.osgi.service.component.annotations.ConfigurationPolicy;
import org.osgi.service.component.annotations.Reference;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
import com.google.inject.Guice;
import com.google.inject.Injector;
+import app4mc.example.transform.m2t.transformers.ExampleGuiceModuleFactory;
+import app4mc.example.transform.m2t.transformers.ExampleTransformer;
+
@Component(
configurationPid = ServiceConstants.SESSION_CONFIGURATION_PID,
configurationPolicy = ConfigurationPolicy.REQUIRE,
@@ -44,32 +42,29 @@
)
public class ExampleModel2TextTransformer extends Model2TextRootTransformer {
- private static final Logger LOG = LoggerFactory.getLogger(ExampleModel2TextTransformer.class);
-
@Reference
ExampleGuiceModuleFactory factory;
-
- private OutputBuffer outputBuffer;
@Activate
- void activate(final Map<String, ?> properties) {
- LOG.info("ExampleModel2TextTransformer activated : {}", factory.getClass().getName());
-
- outputBuffer = new OutputBuffer();
- outputBuffer.initialize(PropertyUtil.getProperty(TransformationConstants.M2T_OUTPUT_FOLDER, properties));
- outputBuffer.configureFiletype("TEXT", ".txt", "**************** BEGIN ***************\n\n", "***************** END ****************");
+ @Override
+ protected void activate(Map<String, ?> properties) {
+ super.activate(properties);
}
@Override
- public void m2tTransformation(final ResourceSet inputResourceSet) {
-
- Injector injector = Guice.createInjector(factory.getModule());
+ public void m2tTransformation() {
+ Injector injector = Guice.createInjector(factory.getModule(logger));
ExampleTransformer exampleTransformer = injector.getInstance(ExampleTransformer.class);
- for (final Resource resource : inputResourceSet.getResources()) {
+ OutputBuffer outputBuffer = injector.getInstance(OutputBuffer.class);
+
+ outputBuffer.initialize(getOutputFolder());
+ outputBuffer.configureFiletype("TEXT", ".txt", "**************** BEGIN ***************\n\n", "***************** END ****************");
+
+ for (final Resource resource : getInputResourceSet(getInputFolder(), logger).getResources()) {
for (final EObject model : resource.getContents()) {
- LOG.info("Processing file : {}", resource.getURI());
+ logger.info("Processing file : {0}", resource.getURI());
if (model instanceof Amalthea) {
exampleTransformer.generate((Amalthea) model, outputBuffer);
diff --git a/framework/examples/app4mc.example.transform.m2t/src/app4mc/example/transform/m2t/configuration/M2TTransformationDefinition.java b/framework/examples/app4mc.example.transform.m2t/src/app4mc/example/transform/m2t/M2TTransformationDefinition.java
similarity index 95%
rename from framework/examples/app4mc.example.transform.m2t/src/app4mc/example/transform/m2t/configuration/M2TTransformationDefinition.java
rename to framework/examples/app4mc.example.transform.m2t/src/app4mc/example/transform/m2t/M2TTransformationDefinition.java
index 12196a3..9377273 100644
--- a/framework/examples/app4mc.example.transform.m2t/src/app4mc/example/transform/m2t/configuration/M2TTransformationDefinition.java
+++ b/framework/examples/app4mc.example.transform.m2t/src/app4mc/example/transform/m2t/M2TTransformationDefinition.java
@@ -13,7 +13,7 @@
********************************************************************************
*/
-package app4mc.example.transform.m2t.configuration;
+package app4mc.example.transform.m2t;
import org.eclipse.app4mc.transformation.TransformationDefinition;
import org.osgi.service.component.annotations.Component;
diff --git a/framework/examples/app4mc.example.transform.m2t/src/app4mc/example/transform/m2t/configuration/M2TTransformationConfig.java b/framework/examples/app4mc.example.transform.m2t/src/app4mc/example/transform/m2t/configuration/M2TTransformationConfig.java
deleted file mode 100644
index 75e8570..0000000
--- a/framework/examples/app4mc.example.transform.m2t/src/app4mc/example/transform/m2t/configuration/M2TTransformationConfig.java
+++ /dev/null
@@ -1,72 +0,0 @@
-/**
- ********************************************************************************
- * Copyright (c) 2018-2021 Robert Bosch GmbH and others.
- *
- * This program and the accompanying materials are made
- * available under the terms of the Eclipse Public License 2.0
- * which is available at https://www.eclipse.org/legal/epl-2.0/
- *
- * SPDX-License-Identifier: EPL-2.0
- *
- * Contributors:
- * Robert Bosch GmbH - initial API and implementation
- ********************************************************************************
- */
-
-package app4mc.example.transform.m2t.configuration;
-
-import java.util.Map;
-
-import org.eclipse.app4mc.amalthea.model.AmaltheaFactory;
-import org.eclipse.app4mc.transformation.ServiceConstants;
-import org.eclipse.app4mc.transformation.executiontype.IModelToTextConfig;
-import org.eclipse.emf.ecore.resource.ResourceSet;
-import org.osgi.service.component.annotations.Activate;
-import org.osgi.service.component.annotations.Component;
-import org.osgi.service.component.annotations.ConfigurationPolicy;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
-import app4mc.example.transform.m2t.loader.AmaltheaMultiFileLoader2;
-
-@Component(
- configurationPid = ServiceConstants.SESSION_CONFIGURATION_PID,
- configurationPolicy = ConfigurationPolicy.REQUIRE,
- property = { ServiceConstants.TRANSFORMATION_PROPERTY + "=Amalthea2Text" },
- service = IModelToTextConfig.class
-)
-public class M2TTransformationConfig implements IModelToTextConfig {
-
- private static final Logger LOG = LoggerFactory.getLogger(M2TTransformationConfig.class);
-
- private AmaltheaMultiFileLoader2 amaltheaMultiFileLoader = new AmaltheaMultiFileLoader2();
-
- private String folderPath;
-
- @Activate
- void activate(Map<String, ?> properties) {
- folderPath = (String) properties.get("input_models_folder");
- }
-
- @Override
- public ResourceSet getInputResourceSet() {
-
- if (folderPath != null) {
-
- ResourceSet resourceSet = amaltheaMultiFileLoader.loadMultipleFiles(folderPath);
-
- if (resourceSet.getResources().isEmpty()) {
- LOG.error("No Amalthea model files are loaded. Verify if the model version is : {}",
- AmaltheaFactory.eINSTANCE.createAmalthea().getVersion());
- }
-
- return resourceSet;
- } else {
- LOG.error("Input_models_folder parameter not set",
- new NullPointerException("input_models_folder property not set"));
- }
-
- return null;
- }
-
-}
diff --git a/framework/examples/app4mc.example.transform.m2t/src/app4mc/example/transform/m2t/loader/AmaltheaMultiFileLoader2.java b/framework/examples/app4mc.example.transform.m2t/src/app4mc/example/transform/m2t/loader/AmaltheaMultiFileLoader2.java
deleted file mode 100644
index 66881c7..0000000
--- a/framework/examples/app4mc.example.transform.m2t/src/app4mc/example/transform/m2t/loader/AmaltheaMultiFileLoader2.java
+++ /dev/null
@@ -1,93 +0,0 @@
-/**
- ********************************************************************************
- * Copyright (c) 2018-2021 Robert Bosch GmbH and others.
- *
- * This program and the accompanying materials are made
- * available under the terms of the Eclipse Public License 2.0
- * which is available at https://www.eclipse.org/legal/epl-2.0/
- *
- * SPDX-License-Identifier: EPL-2.0
- *
- * Contributors:
- * Robert Bosch GmbH - initial API and implementation
- ********************************************************************************
- */
-
-package app4mc.example.transform.m2t.loader;
-
-import java.io.File;
-import java.io.FilenameFilter;
-import java.io.IOException;
-import java.util.ArrayList;
-import java.util.List;
-
-import org.eclipse.app4mc.amalthea.model.Amalthea;
-import org.eclipse.app4mc.amalthea.model.AmaltheaPackage;
-import org.eclipse.app4mc.amalthea.model.emf.AmaltheaResourceFactory;
-import org.eclipse.app4mc.amalthea.model.emf.AmaltheaResourceSetImpl;
-import org.eclipse.emf.common.util.URI;
-import org.eclipse.emf.ecore.EObject;
-import org.eclipse.emf.ecore.resource.Resource;
-import org.eclipse.emf.ecore.resource.ResourceSet;
-import org.eclipse.emf.ecore.resource.impl.ResourceSetImpl;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
-/**
- * AmaltheaMultiFileLoader2
- *
- * Should be replaced by standard AmaltheaLoader (APP4MC version > 1.0.0)
- *
- */
-public class AmaltheaMultiFileLoader2 implements IMultiFileLoader {
-
- private static final Logger LOG = LoggerFactory.getLogger(AmaltheaMultiFileLoader2.class);
-
- public ResourceSet loadMultipleFiles(String directoryPath) {
-
- File folder = new File(directoryPath);
-
- if (folder.isDirectory()) {
- File[] listFiles = folder.listFiles((FilenameFilter) (file, name) -> name.endsWith(".amxmi"));
-
- ResourceSet resourceSet = initializeResourceSet();
-
- loadMultipleFiles(resourceSet, listFiles);
-
- return resourceSet;
- }
-
- return new ResourceSetImpl();
-
- }
-
- private List<Amalthea> loadMultipleFiles(ResourceSet resourceSet, File[] listFiles) {
-
- List<Amalthea> models = new ArrayList<>();
-
- for (File amxmiFile : listFiles) {
-
- final Resource res = resourceSet.createResource(URI.createURI("file:////" + amxmiFile.getAbsolutePath()));
- try {
- res.load(null);
- for (final EObject content : res.getContents()) {
- if (content instanceof Amalthea) {
- models.add((Amalthea) content);
- }
- }
- } catch (IOException e) {
- LOG.error(e.getMessage(), e);
- }
- }
- return models;
- }
-
- private static ResourceSet initializeResourceSet() {
- final AmaltheaResourceSetImpl resSet = new AmaltheaResourceSetImpl();
- resSet.getResourceFactoryRegistry().getExtensionToFactoryMap().put("amxmi", new AmaltheaResourceFactory());
- AmaltheaPackage.eINSTANCE.eClass(); // register the package
-
- return resSet;
- }
-
-}
diff --git a/framework/examples/app4mc.example.transform.m2t/src/app4mc/example/transform/m2t/loader/IMultiFileLoader.java b/framework/examples/app4mc.example.transform.m2t/src/app4mc/example/transform/m2t/loader/IMultiFileLoader.java
deleted file mode 100644
index 20ae4d4..0000000
--- a/framework/examples/app4mc.example.transform.m2t/src/app4mc/example/transform/m2t/loader/IMultiFileLoader.java
+++ /dev/null
@@ -1,23 +0,0 @@
-/**
- ********************************************************************************
- * Copyright (c) 2018-2021 Robert Bosch GmbH and others.
- *
- * This program and the accompanying materials are made
- * available under the terms of the Eclipse Public License 2.0
- * which is available at https://www.eclipse.org/legal/epl-2.0/
- *
- * SPDX-License-Identifier: EPL-2.0
- *
- * Contributors:
- * Robert Bosch GmbH - initial API and implementation
- ********************************************************************************
- */
-
-package app4mc.example.transform.m2t.loader;
-
-import org.eclipse.emf.ecore.resource.ResourceSet;
-
-public interface IMultiFileLoader {
-
- public ResourceSet loadMultipleFiles(String directoryPath);
-}
diff --git a/framework/examples/app4mc.example.transform.m2t/src/app4mc/example/transform/m2t/transformers/ExampleGuiceModule.java b/framework/examples/app4mc.example.transform.m2t/src/app4mc/example/transform/m2t/transformers/ExampleGuiceModule.java
index 651624c..e52c97b 100644
--- a/framework/examples/app4mc.example.transform.m2t/src/app4mc/example/transform/m2t/transformers/ExampleGuiceModule.java
+++ b/framework/examples/app4mc.example.transform.m2t/src/app4mc/example/transform/m2t/transformers/ExampleGuiceModule.java
@@ -1,6 +1,6 @@
/**
********************************************************************************
- * Copyright (c) 2020 Robert Bosch GmbH.
+ * Copyright (c) 2020, 2021 Robert Bosch GmbH.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
@@ -15,14 +15,13 @@
package app4mc.example.transform.m2t.transformers;
-import com.google.inject.AbstractModule;
+import org.eclipse.app4mc.transformation.util.TransformationGuiceModule;
+import org.eclipse.app4mc.util.sessionlog.SessionLogger;
-public class ExampleGuiceModule extends AbstractModule {
+public class ExampleGuiceModule extends TransformationGuiceModule {
- @Override
- protected void configure() {
- // TODO Auto-generated method stub
-
+ public ExampleGuiceModule(SessionLogger logger) {
+ super(logger);
}
}
diff --git a/framework/examples/app4mc.example.transform.m2t/src/app4mc/example/transform/m2t/transformers/ExampleGuiceModuleFactory.java b/framework/examples/app4mc.example.transform.m2t/src/app4mc/example/transform/m2t/transformers/ExampleGuiceModuleFactory.java
index 2e3d3fc..3c01d02 100644
--- a/framework/examples/app4mc.example.transform.m2t/src/app4mc/example/transform/m2t/transformers/ExampleGuiceModuleFactory.java
+++ b/framework/examples/app4mc.example.transform.m2t/src/app4mc/example/transform/m2t/transformers/ExampleGuiceModuleFactory.java
@@ -1,6 +1,6 @@
/**
********************************************************************************
- * Copyright (c) 2020 Robert Bosch GmbH.
+ * Copyright (c) 2020, 2021 Robert Bosch GmbH.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
@@ -12,18 +12,16 @@
* Robert Bosch GmbH - initial API and implementation
********************************************************************************
*/
-
package app4mc.example.transform.m2t.transformers;
+import org.eclipse.app4mc.util.sessionlog.SessionLogger;
import org.osgi.service.component.annotations.Component;
-@Component(
- service = ExampleGuiceModuleFactory.class)
-
+@Component(service = ExampleGuiceModuleFactory.class)
public class ExampleGuiceModuleFactory {
-
- public ExampleGuiceModule getModule() {
- return new ExampleGuiceModule();
+
+ public ExampleGuiceModule getModule(SessionLogger logger) {
+ return new ExampleGuiceModule(logger);
}
}
diff --git a/framework/examples/app4mc.example.transform.m2t/src/app4mc/example/transform/m2t/transformers/ExampleTransformer.java b/framework/examples/app4mc.example.transform.m2t/src/app4mc/example/transform/m2t/transformers/ExampleTransformer.java
index 0f741b8..af032dd 100644
--- a/framework/examples/app4mc.example.transform.m2t/src/app4mc/example/transform/m2t/transformers/ExampleTransformer.java
+++ b/framework/examples/app4mc.example.transform.m2t/src/app4mc/example/transform/m2t/transformers/ExampleTransformer.java
@@ -17,9 +17,9 @@
import org.eclipse.app4mc.amalthea.model.Amalthea;
import org.eclipse.app4mc.transformation.util.OutputBuffer;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
+import org.eclipse.app4mc.util.sessionlog.SessionLogger;
+import com.google.inject.Inject;
import com.google.inject.Singleton;
import app4mc.example.transform.m2t.generators.ExampleGenerator;
@@ -27,23 +27,24 @@
@Singleton
public class ExampleTransformer {
- private static final Logger LOG = LoggerFactory.getLogger(ExampleTransformer.class);
-
+ @Inject
+ protected SessionLogger logger;
+
public void generate(Amalthea model, OutputBuffer outputBuffer) {
generateOutput1(model, outputBuffer);
generateOutput2(model, outputBuffer);
- LOG.info("Script file generated at : {}", outputBuffer.getOutputFolder());
+ logger.info("Script file generated at : {0}", outputBuffer.getOutputFolder());
}
protected void generateOutput1(Amalthea model, OutputBuffer outputBuffer) {
- LOG.info(" - executing ExampleTransformer.generateOutput1");
+ logger.info(" - executing ExampleTransformer.generateOutput1");
outputBuffer.appendTo("TEXT", "1", ExampleGenerator.generateOutput1(model));
}
protected void generateOutput2(Amalthea model, OutputBuffer outputBuffer) {
- LOG.info(" - executing ExampleTransformer.generateOutput2");
+ logger.info(" - executing ExampleTransformer.generateOutput2");
outputBuffer.appendTo("TEXT", "2", ExampleGenerator.generateOutput2(model));
}
diff --git a/framework/examples/app4mc.example.transform.product/Transformation.product b/framework/examples/app4mc.example.transform.product/Transformation.product
index 556b953..b13e16a 100644
--- a/framework/examples/app4mc.example.transform.product/Transformation.product
+++ b/framework/examples/app4mc.example.transform.product/Transformation.product
@@ -9,7 +9,7 @@
<launcherArgs>
<programArgs>--properties "${project_loc:/app4mc.example.transform.product}/input.properties" -console
</programArgs>
- <vmArgs>-Declipse.ignoreApp=true -Dosgi.noShutdown=true -Dlog4j.configuration=headless_log4j.xml -Dorg.eclipse.emf.ecore.EPackage.Registry.INSTANCE=org.eclipse.emf.ecore.impl.EPackageRegistryImpl
+ <vmArgs>-Declipse.ignoreApp=true -Dosgi.noShutdown=true -Dorg.eclipse.emf.ecore.EPackage.Registry.INSTANCE=org.eclipse.emf.ecore.impl.EPackageRegistryImpl
</vmArgs>
<vmArgsMac>-XstartOnFirstThread -Dorg.eclipse.swt.internal.carbon.smallFonts
</vmArgsMac>
@@ -41,11 +41,12 @@
<plugin id="org.apache.felix.gogo.runtime"/>
<plugin id="org.apache.felix.gogo.shell"/>
<plugin id="org.apache.felix.scr"/>
- <plugin id="org.apache.log4j"/>
<plugin id="org.eclipse.app4mc.amalthea.model"/>
<plugin id="org.eclipse.app4mc.transformation"/>
- <plugin id="org.eclipse.app4mc.transformation.log4j.configuration" fragment="true"/>
<plugin id="org.eclipse.app4mc.transformation.starter"/>
+ <plugin id="org.eclipse.app4mc.util.sessionlog"/>
+ <plugin id="org.eclipse.app4mc.util.sessionlog.console"/>
+ <plugin id="org.eclipse.app4mc.util.sessionlog.file"/>
<plugin id="org.eclipse.emf.common"/>
<plugin id="org.eclipse.emf.ecore"/>
<plugin id="org.eclipse.emf.ecore.xcore.lib"/>
@@ -59,14 +60,14 @@
<plugin id="org.eclipse.osgi.util"/>
<plugin id="org.eclipse.xtext.xbase.lib"/>
<plugin id="org.slf4j.api"/>
- <plugin id="org.slf4j.impl.log4j12" fragment="true"/>
</plugins>
<configurations>
<plugin id="org.apache.felix.scr" autoStart="true" startLevel="2" />
+ <plugin id="org.eclipse.app4mc.util.sessionlog.console" autoStart="true" startLevel="3" />
+ <plugin id="org.eclipse.app4mc.util.sessionlog.file" autoStart="true" startLevel="3" />
<plugin id="org.eclipse.equinox.cm" autoStart="true" startLevel="2" />
<plugin id="org.eclipse.equinox.event" autoStart="true" startLevel="2" />
- <property name="log4j.configuration" value="headless_log4j.xml" />
</configurations>
<preferencesInfo>
diff --git a/framework/examples/app4mc.example.transform.ui/.classpath b/framework/examples/app4mc.example.transform.ui/.classpath
deleted file mode 100644
index a7272b8..0000000
--- a/framework/examples/app4mc.example.transform.ui/.classpath
+++ /dev/null
@@ -1,7 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<classpath>
- <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
- <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
- <classpathentry kind="src" path="src"/>
- <classpathentry kind="output" path="bin"/>
-</classpath>
diff --git a/framework/examples/app4mc.example.transform.ui/.project b/framework/examples/app4mc.example.transform.ui/.project
deleted file mode 100644
index ff91dc8..0000000
--- a/framework/examples/app4mc.example.transform.ui/.project
+++ /dev/null
@@ -1,28 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<projectDescription>
- <name>app4mc.example.transform.ui</name>
- <comment></comment>
- <projects>
- </projects>
- <buildSpec>
- <buildCommand>
- <name>org.eclipse.jdt.core.javabuilder</name>
- <arguments>
- </arguments>
- </buildCommand>
- <buildCommand>
- <name>org.eclipse.pde.ManifestBuilder</name>
- <arguments>
- </arguments>
- </buildCommand>
- <buildCommand>
- <name>org.eclipse.pde.SchemaBuilder</name>
- <arguments>
- </arguments>
- </buildCommand>
- </buildSpec>
- <natures>
- <nature>org.eclipse.pde.PluginNature</nature>
- <nature>org.eclipse.jdt.core.javanature</nature>
- </natures>
-</projectDescription>
diff --git a/framework/examples/app4mc.example.transform.ui/.settings/org.eclipse.core.resources.prefs b/framework/examples/app4mc.example.transform.ui/.settings/org.eclipse.core.resources.prefs
deleted file mode 100644
index 99f26c0..0000000
--- a/framework/examples/app4mc.example.transform.ui/.settings/org.eclipse.core.resources.prefs
+++ /dev/null
@@ -1,2 +0,0 @@
-eclipse.preferences.version=1
-encoding/<project>=UTF-8
diff --git a/framework/examples/app4mc.example.transform.ui/.settings/org.eclipse.jdt.core.prefs b/framework/examples/app4mc.example.transform.ui/.settings/org.eclipse.jdt.core.prefs
deleted file mode 100644
index 0fee6a9..0000000
--- a/framework/examples/app4mc.example.transform.ui/.settings/org.eclipse.jdt.core.prefs
+++ /dev/null
@@ -1,15 +0,0 @@
-eclipse.preferences.version=1
-org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
-org.eclipse.jdt.core.compiler.codegen.methodParameters=do not generate
-org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
-org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
-org.eclipse.jdt.core.compiler.compliance=1.8
-org.eclipse.jdt.core.compiler.debug.lineNumber=generate
-org.eclipse.jdt.core.compiler.debug.localVariable=generate
-org.eclipse.jdt.core.compiler.debug.sourceFile=generate
-org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
-org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled
-org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
-org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning
-org.eclipse.jdt.core.compiler.release=disabled
-org.eclipse.jdt.core.compiler.source=1.8
diff --git a/framework/examples/app4mc.example.transform.ui/META-INF/MANIFEST.MF b/framework/examples/app4mc.example.transform.ui/META-INF/MANIFEST.MF
deleted file mode 100644
index a6506b0..0000000
--- a/framework/examples/app4mc.example.transform.ui/META-INF/MANIFEST.MF
+++ /dev/null
@@ -1,27 +0,0 @@
-Manifest-Version: 1.0
-Bundle-ManifestVersion: 2
-Bundle-Name: app4mc.example.transform.ui
-Bundle-SymbolicName: app4mc.example.transform.ui;singleton:=true
-Bundle-Version: 1.1.0.qualifier
-Require-Bundle: org.eclipse.core.runtime,
- org.eclipse.core.resources,
- org.eclipse.core.expressions;bundle-version="3.6.100",
- org.eclipse.e4.core.services,
- org.eclipse.jface;bundle-version="3.14.0",
- org.eclipse.osgi.services;bundle-version="3.7.0",
- org.eclipse.e4.core.di,
- org.eclipse.e4.ui.model.workbench;bundle-version="2.1.600.v20191106-1503"
-Bundle-RequiredExecutionEnvironment: JavaSE-1.8
-Import-Package: javax.inject;version="1.0.0",
- org.eclipse.app4mc.transformation,
- org.eclipse.app4mc.transformation.executiontype,
- org.eclipse.app4mc.transformation.starter,
- org.eclipse.app4mc.transformation.transformers,
- org.eclipse.e4.core.contexts;version="1.7.0",
- org.eclipse.e4.core.di.annotations;version="1.6.0",
- org.eclipse.e4.core.di.extensions;version="0.15.0",
- org.eclipse.e4.ui.di,
- org.eclipse.e4.ui.services,
- org.slf4j
-Bundle-ActivationPolicy: lazy
-Automatic-Module-Name: app4mc.example.transform.ui
diff --git a/framework/examples/app4mc.example.transform.ui/build.properties b/framework/examples/app4mc.example.transform.ui/build.properties
deleted file mode 100644
index 9afdcd1..0000000
--- a/framework/examples/app4mc.example.transform.ui/build.properties
+++ /dev/null
@@ -1,6 +0,0 @@
-output.. = bin/
-bin.includes = META-INF/,\
- .,\
- plugin.xml,\
- fragment.e4xmi
-source.. = src/
diff --git a/framework/examples/app4mc.example.transform.ui/filterfolder@2x.png b/framework/examples/app4mc.example.transform.ui/filterfolder@2x.png
deleted file mode 100644
index 543d7e6..0000000
--- a/framework/examples/app4mc.example.transform.ui/filterfolder@2x.png
+++ /dev/null
Binary files differ
diff --git a/framework/examples/app4mc.example.transform.ui/fragment.e4xmi b/framework/examples/app4mc.example.transform.ui/fragment.e4xmi
deleted file mode 100644
index 007e0fb..0000000
--- a/framework/examples/app4mc.example.transform.ui/fragment.e4xmi
+++ /dev/null
@@ -1,14 +0,0 @@
-<?xml version="1.0" encoding="ASCII"?>
-<fragment:ModelFragments xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:commands="http://www.eclipse.org/ui/2010/UIModel/application/commands" xmlns:fragment="http://www.eclipse.org/ui/2010/UIModel/fragment" xmlns:menu="http://www.eclipse.org/ui/2010/UIModel/application/ui/menu" xmi:id="_IiAOwAJpEeu5A_airKb0lA">
- <fragments xsi:type="fragment:StringModelFragment" xmi:id="_LZ96YAJpEeu5A_airKb0lA" featurename="commands" parentElementId="xpath:/">
- <elements xsi:type="commands:Command" xmi:id="_NoQ98AJpEeu5A_airKb0lA" elementId="app4mc.example.transform.ui.command.modeltransformation" commandName="model transformation"/>
- </fragments>
- <fragments xsi:type="fragment:StringModelFragment" xmi:id="_QFbj8AJpEeu5A_airKb0lA" featurename="handlers" parentElementId="xpath:/">
- <elements xsi:type="commands:Handler" xmi:id="_RpSjYAJpEeu5A_airKb0lA" elementId="app4mc.example.transform.ui.handler.0" contributionURI="bundleclass://app4mc.example.transform.ui/app4mc.example.transform.product.handlers.SampleHandler" command="_NoQ98AJpEeu5A_airKb0lA"/>
- </fragments>
- <fragments xsi:type="fragment:StringModelFragment" xmi:id="_jmQp0AJqEeu5A_airKb0lA" featurename="menuContributions" parentElementId="xpath:/">
- <elements xsi:type="menu:MenuContribution" xmi:id="_m4OJ0AJqEeu5A_airKb0lA" elementId="app4mc.example.transform.ui.menucontribution.0" positionInParent="after=additions" parentId="popup">
- <children xsi:type="menu:HandledMenuItem" xmi:id="_nqWKUAJqEeu5A_airKb0lA" elementId="modelTransformation.id" label="APP4MC Model Transformation" command="_NoQ98AJpEeu5A_airKb0lA"/>
- </elements>
- </fragments>
-</fragment:ModelFragments>
diff --git a/framework/examples/app4mc.example.transform.ui/icons/sample.gif b/framework/examples/app4mc.example.transform.ui/icons/sample.gif
deleted file mode 100644
index 34fb3c9..0000000
--- a/framework/examples/app4mc.example.transform.ui/icons/sample.gif
+++ /dev/null
Binary files differ
diff --git a/framework/examples/app4mc.example.transform.ui/plugin.xml b/framework/examples/app4mc.example.transform.ui/plugin.xml
deleted file mode 100644
index 9b1e0bc..0000000
--- a/framework/examples/app4mc.example.transform.ui/plugin.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<?eclipse version="3.4"?>
-<plugin>
- <extension
- id="org.eclipse.app4mc.amalthea.transformation"
- point="org.eclipse.e4.workbench.model">
- <fragment
- uri="fragment.e4xmi">
- </fragment>
- </extension>
-</plugin>
diff --git a/framework/examples/app4mc.example.transform.ui/src/app4mc/example/transform/product/handlers/SampleHandler.java b/framework/examples/app4mc.example.transform.ui/src/app4mc/example/transform/product/handlers/SampleHandler.java
deleted file mode 100644
index 37e9503..0000000
--- a/framework/examples/app4mc.example.transform.ui/src/app4mc/example/transform/product/handlers/SampleHandler.java
+++ /dev/null
@@ -1,93 +0,0 @@
-/*******************************************************************************
- *
- * Copyright (c) 2018, 2020 Robert Bosch GmbH.
- *
- * This program and the accompanying materials are made
- * available under the terms of the Eclipse Public License 2.0
- * which is available at https://www.eclipse.org/legal/epl-2.0/
- *
- * SPDX-License-Identifier: EPL-2.0
- *
- * Contributors:
- * Robert Bosch GmbH - initial API and implementation
- *******************************************************************************/
-package app4mc.example.transform.product.handlers;
-
-import java.io.File;
-import java.io.IOException;
-import java.net.URL;
-import java.util.Properties;
-
-import javax.inject.Named;
-
-import org.eclipse.app4mc.transformation.TransformationConstants;
-import org.eclipse.app4mc.transformation.TransformationProcessor;
-import org.eclipse.core.commands.ExecutionException;
-import org.eclipse.core.runtime.FileLocator;
-import org.eclipse.core.runtime.Platform;
-import org.eclipse.core.runtime.Status;
-import org.eclipse.e4.core.di.annotations.Execute;
-import org.eclipse.e4.core.di.extensions.Service;
-import org.eclipse.e4.ui.services.IServiceConstants;
-import org.eclipse.jface.dialogs.ErrorDialog;
-import org.eclipse.jface.viewers.ISelection;
-import org.eclipse.swt.widgets.Shell;
-import org.osgi.framework.Bundle;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
-@SuppressWarnings("restriction")
-public class SampleHandler {
-
- private static final Logger LOG = LoggerFactory.getLogger(SampleHandler.class);
-
- @Execute
- public Object execute(Shell shell,
- @Service TransformationProcessor cmd,
- @Named(IServiceConstants.ACTIVE_SELECTION) ISelection selection) throws ExecutionException {
-
- LOG.debug("\n\n\n****************************************************************************************************************");
- LOG.debug("TransformationProcessor : {}", cmd.hashCode());
- try {
-
- Properties properties = new Properties();
- String input = getResourceFromPlugin("/input/amalthea_models");
- properties.put("input_models_folder", input);
- File inputFile = new File(input);
- File parentFile = inputFile.getParentFile().getParentFile();
- properties.put(TransformationConstants.OUTPUT_FOLDER, new File(parentFile + File.separator + "output/amalthea_models").getCanonicalPath());
-
- properties.put(TransformationConstants.M2M_TRANSFORMERS, "Amalthea2SampleModel");
- properties.put(TransformationConstants.M2T_TRANSFORMERS, "Amalthea2Text");
-
- cmd.startTransformation(properties);
-// cmd.startTransformation(new File(getResourceFromPlugin("/input.properties")));
-
- } catch (Exception e) {
- ErrorDialog.openError(shell, "Error", e.getMessage(), Status.OK_STATUS);
- }
-
- LOG.debug("****************************************************************************************************************");
- return null;
- }
-
- public String getResourceFromPlugin(String path) throws IOException {
-
- Bundle bundle = Platform.getBundle("app4mc.example.transform.product");
-
- if (bundle != null) {
- URL entry = bundle.getEntry(path);
- if (entry != null) {
- URL fileURL = FileLocator.toFileURL(entry);
- if (fileURL != null) {
- return fileURL.getFile();
- }
- }
- } else {
- LOG.error("Bundle app4mc.example.transform.product is not available, and due to this reason input.properties file can not be fetched");
- }
- return null;
- }
-
-
-}
diff --git a/framework/features/org.eclipse.app4mc.transformation.feature.sdk/feature.xml b/framework/features/org.eclipse.app4mc.transformation.feature.sdk/feature.xml
index 4930cf0..7044346 100644
--- a/framework/features/org.eclipse.app4mc.transformation.feature.sdk/feature.xml
+++ b/framework/features/org.eclipse.app4mc.transformation.feature.sdk/feature.xml
@@ -20,10 +20,6 @@
id="org.eclipse.app4mc.transformation.feature"
version="0.0.0"/>
- <includes
- id="org.eclipse.app4mc.transformation.log4j.configuration.feature"
- version="0.0.0"/>
-
<plugin
id="org.eclipse.app4mc.transformation.source"
download-size="0"
@@ -38,12 +34,4 @@
version="0.0.0"
unpack="false"/>
- <plugin
- id="org.eclipse.app4mc.transformation.log4j.configuration.source"
- download-size="0"
- install-size="0"
- version="0.0.0"
- fragment="true"
- unpack="false"/>
-
</feature>
diff --git a/framework/features/org.eclipse.app4mc.transformation.log4j.configuration.feature/.project b/framework/features/org.eclipse.app4mc.transformation.log4j.configuration.feature/.project
deleted file mode 100644
index 4755fcb..0000000
--- a/framework/features/org.eclipse.app4mc.transformation.log4j.configuration.feature/.project
+++ /dev/null
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<projectDescription>
- <name>org.eclipse.app4mc.transformation.log4j.configuration.feature</name>
- <comment></comment>
- <projects>
- </projects>
- <buildSpec>
- <buildCommand>
- <name>org.eclipse.pde.FeatureBuilder</name>
- <arguments>
- </arguments>
- </buildCommand>
- </buildSpec>
- <natures>
- <nature>org.eclipse.pde.FeatureNature</nature>
- </natures>
-</projectDescription>
diff --git a/framework/features/org.eclipse.app4mc.transformation.log4j.configuration.feature/.settings/org.eclipse.core.resources.prefs b/framework/features/org.eclipse.app4mc.transformation.log4j.configuration.feature/.settings/org.eclipse.core.resources.prefs
deleted file mode 100644
index 99f26c0..0000000
--- a/framework/features/org.eclipse.app4mc.transformation.log4j.configuration.feature/.settings/org.eclipse.core.resources.prefs
+++ /dev/null
@@ -1,2 +0,0 @@
-eclipse.preferences.version=1
-encoding/<project>=UTF-8
diff --git a/framework/features/org.eclipse.app4mc.transformation.log4j.configuration.feature/about.html b/framework/features/org.eclipse.app4mc.transformation.log4j.configuration.feature/about.html
deleted file mode 100644
index 164f781..0000000
--- a/framework/features/org.eclipse.app4mc.transformation.log4j.configuration.feature/about.html
+++ /dev/null
@@ -1,36 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
-<head>
-<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
-<title>About</title>
-</head>
-<body lang="EN-US">
- <h2>About This Content</h2>
-
- <p>November 30, 2017</p>
- <h3>License</h3>
-
- <p>
- The Eclipse Foundation makes available all content in this plug-in
- ("Content"). Unless otherwise indicated below, the Content
- is provided to you under the terms and conditions of the Eclipse
- Public License Version 2.0 ("EPL"). A copy of the EPL is
- available at <a href="http://www.eclipse.org/legal/epl-2.0">http://www.eclipse.org/legal/epl-2.0</a>.
- For purposes of the EPL, "Program" will mean the Content.
- </p>
-
- <p>
- If you did not receive this Content directly from the Eclipse
- Foundation, the Content is being redistributed by another party
- ("Redistributor") and different terms and conditions may
- apply to your use of any object code in the Content. Check the
- Redistributor's license that was provided with the Content. If no such
- license exists, contact the Redistributor. Unless otherwise indicated
- below, the terms and conditions of the EPL still apply to any source
- code in the Content and such source code may be obtained at <a
- href="http://www.eclipse.org/">http://www.eclipse.org</a>.
- </p>
-
-</body>
-</html>
\ No newline at end of file
diff --git a/framework/features/org.eclipse.app4mc.transformation.log4j.configuration.feature/build.properties b/framework/features/org.eclipse.app4mc.transformation.log4j.configuration.feature/build.properties
deleted file mode 100644
index 09cb93b..0000000
--- a/framework/features/org.eclipse.app4mc.transformation.log4j.configuration.feature/build.properties
+++ /dev/null
@@ -1,3 +0,0 @@
-bin.includes = feature.xml,\
- epl-2.0.html
-src.includes = epl-2.0.html
diff --git a/framework/features/org.eclipse.app4mc.transformation.log4j.configuration.feature/epl-2.0.html b/framework/features/org.eclipse.app4mc.transformation.log4j.configuration.feature/epl-2.0.html
deleted file mode 100644
index 637a181..0000000
--- a/framework/features/org.eclipse.app4mc.transformation.log4j.configuration.feature/epl-2.0.html
+++ /dev/null
@@ -1,300 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Eclipse Public License - Version 2.0</title>
- <style type="text/css">
- body {
- margin: 1.5em 3em;
- }
- h1{
- font-size:1.5em;
- }
- h2{
- font-size:1em;
- margin-bottom:0.5em;
- margin-top:1em;
- }
- p {
- margin-top: 0.5em;
- margin-bottom: 0.5em;
- }
- ul, ol{
- list-style-type:none;
- }
- </style>
- </head>
- <body>
- <h1>Eclipse Public License - v 2.0</h1>
- <p>THE ACCOMPANYING PROGRAM IS PROVIDED UNDER THE TERMS OF THIS ECLIPSE
- PUBLIC LICENSE (“AGREEMENT”). ANY USE, REPRODUCTION OR DISTRIBUTION
- OF THE PROGRAM CONSTITUTES RECIPIENT'S ACCEPTANCE OF THIS AGREEMENT.
- </p>
- <h2 id="definitions">1. DEFINITIONS</h2>
- <p>“Contribution” means:</p>
- <ul>
- <li>a) in the case of the initial Contributor, the initial content
- Distributed under this Agreement, and
- </li>
- <li>
- b) in the case of each subsequent Contributor:
- <ul>
- <li>i) changes to the Program, and</li>
- <li>ii) additions to the Program;</li>
- </ul>
- where such changes and/or additions to the Program originate from
- and are Distributed by that particular Contributor. A Contribution
- “originates” from a Contributor if it was added to the Program by such
- Contributor itself or anyone acting on such Contributor's behalf.
- Contributions do not include changes or additions to the Program that
- are not Modified Works.
- </li>
- </ul>
- <p>“Contributor” means any person or entity that Distributes the Program.</p>
- <p>“Licensed Patents” mean patent claims licensable by a Contributor which
- are necessarily infringed by the use or sale of its Contribution alone
- or when combined with the Program.
- </p>
- <p>“Program” means the Contributions Distributed in accordance with this
- Agreement.
- </p>
- <p>“Recipient” means anyone who receives the Program under this Agreement
- or any Secondary License (as applicable), including Contributors.
- </p>
- <p>“Derivative Works” shall mean any work, whether in Source Code or other
- form, that is based on (or derived from) the Program and for which the
- editorial revisions, annotations, elaborations, or other modifications
- represent, as a whole, an original work of authorship.
- </p>
- <p>“Modified Works” shall mean any work in Source Code or other form that
- results from an addition to, deletion from, or modification of the
- contents of the Program, including, for purposes of clarity any new file
- in Source Code form that contains any contents of the Program. Modified
- Works shall not include works that contain only declarations, interfaces,
- types, classes, structures, or files of the Program solely in each case
- in order to link to, bind by name, or subclass the Program or Modified
- Works thereof.
- </p>
- <p>“Distribute” means the acts of a) distributing or b) making available
- in any manner that enables the transfer of a copy.
- </p>
- <p>“Source Code” means the form of a Program preferred for making
- modifications, including but not limited to software source code,
- documentation source, and configuration files.
- </p>
- <p>“Secondary License” means either the GNU General Public License,
- Version 2.0, or any later versions of that license, including any
- exceptions or additional permissions as identified by the initial
- Contributor.
- </p>
- <h2 id="grant-of-rights">2. GRANT OF RIGHTS</h2>
- <ul>
- <li>a) Subject to the terms of this Agreement, each Contributor hereby
- grants Recipient a non-exclusive, worldwide, royalty-free copyright
- license to reproduce, prepare Derivative Works of, publicly display,
- publicly perform, Distribute and sublicense the Contribution of such
- Contributor, if any, and such Derivative Works.
- </li>
- <li>b) Subject to the terms of this Agreement, each Contributor hereby
- grants Recipient a non-exclusive, worldwide, royalty-free patent
- license under Licensed Patents to make, use, sell, offer to sell,
- import and otherwise transfer the Contribution of such Contributor,
- if any, in Source Code or other form. This patent license shall
- apply to the combination of the Contribution and the Program if,
- at the time the Contribution is added by the Contributor, such
- addition of the Contribution causes such combination to be covered
- by the Licensed Patents. The patent license shall not apply to any
- other combinations which include the Contribution. No hardware per
- se is licensed hereunder.
- </li>
- <li>c) Recipient understands that although each Contributor grants the
- licenses to its Contributions set forth herein, no assurances are
- provided by any Contributor that the Program does not infringe the
- patent or other intellectual property rights of any other entity.
- Each Contributor disclaims any liability to Recipient for claims
- brought by any other entity based on infringement of intellectual
- property rights or otherwise. As a condition to exercising the rights
- and licenses granted hereunder, each Recipient hereby assumes sole
- responsibility to secure any other intellectual property rights needed,
- if any. For example, if a third party patent license is required to
- allow Recipient to Distribute the Program, it is Recipient's
- responsibility to acquire that license before distributing the Program.
- </li>
- <li>d) Each Contributor represents that to its knowledge it has sufficient
- copyright rights in its Contribution, if any, to grant the copyright
- license set forth in this Agreement.
- </li>
- <li>e) Notwithstanding the terms of any Secondary License, no Contributor
- makes additional grants to any Recipient (other than those set forth
- in this Agreement) as a result of such Recipient's receipt of the
- Program under the terms of a Secondary License (if permitted under
- the terms of Section 3).
- </li>
- </ul>
- <h2 id="requirements">3. REQUIREMENTS</h2>
- <p>3.1 If a Contributor Distributes the Program in any form, then:</p>
- <ul>
- <li>a) the Program must also be made available as Source Code, in
- accordance with section 3.2, and the Contributor must accompany
- the Program with a statement that the Source Code for the Program
- is available under this Agreement, and informs Recipients how to
- obtain it in a reasonable manner on or through a medium customarily
- used for software exchange; and
- </li>
- <li>
- b) the Contributor may Distribute the Program under a license
- different than this Agreement, provided that such license:
- <ul>
- <li>i) effectively disclaims on behalf of all other Contributors all
- warranties and conditions, express and implied, including warranties
- or conditions of title and non-infringement, and implied warranties
- or conditions of merchantability and fitness for a particular purpose;
- </li>
- <li>ii) effectively excludes on behalf of all other Contributors all
- liability for damages, including direct, indirect, special, incidental
- and consequential damages, such as lost profits;
- </li>
- <li>iii) does not attempt to limit or alter the recipients' rights in the
- Source Code under section 3.2; and
- </li>
- <li>iv) requires any subsequent distribution of the Program by any party
- to be under a license that satisfies the requirements of this section 3.
- </li>
- </ul>
- </li>
- </ul>
- <p>3.2 When the Program is Distributed as Source Code:</p>
- <ul>
- <li>a) it must be made available under this Agreement, or if the Program (i)
- is combined with other material in a separate file or files made available
- under a Secondary License, and (ii) the initial Contributor attached to
- the Source Code the notice described in Exhibit A of this Agreement,
- then the Program may be made available under the terms of such
- Secondary Licenses, and
- </li>
- <li>b) a copy of this Agreement must be included with each copy of the Program.</li>
- </ul>
- <p>3.3 Contributors may not remove or alter any copyright, patent, trademark,
- attribution notices, disclaimers of warranty, or limitations of liability
- (‘notices’) contained within the Program from any copy of the Program which
- they Distribute, provided that Contributors may add their own appropriate
- notices.
- </p>
- <h2 id="commercial-distribution">4. COMMERCIAL DISTRIBUTION</h2>
- <p>Commercial distributors of software may accept certain responsibilities
- with respect to end users, business partners and the like. While this
- license is intended to facilitate the commercial use of the Program, the
- Contributor who includes the Program in a commercial product offering should
- do so in a manner which does not create potential liability for other
- Contributors. Therefore, if a Contributor includes the Program in a
- commercial product offering, such Contributor (“Commercial Contributor”)
- hereby agrees to defend and indemnify every other Contributor
- (“Indemnified Contributor”) against any losses, damages and costs
- (collectively “Losses”) arising from claims, lawsuits and other legal actions
- brought by a third party against the Indemnified Contributor to the extent
- caused by the acts or omissions of such Commercial Contributor in connection
- with its distribution of the Program in a commercial product offering.
- The obligations in this section do not apply to any claims or Losses relating
- to any actual or alleged intellectual property infringement. In order to
- qualify, an Indemnified Contributor must: a) promptly notify the
- Commercial Contributor in writing of such claim, and b) allow the Commercial
- Contributor to control, and cooperate with the Commercial Contributor in,
- the defense and any related settlement negotiations. The Indemnified
- Contributor may participate in any such claim at its own expense.
- </p>
- <p>For example, a Contributor might include the Program
- in a commercial product offering, Product X. That Contributor is then a
- Commercial Contributor. If that Commercial Contributor then makes performance
- claims, or offers warranties related to Product X, those performance claims
- and warranties are such Commercial Contributor's responsibility alone.
- Under this section, the Commercial Contributor would have to defend claims
- against the other Contributors related to those performance claims and
- warranties, and if a court requires any other Contributor to pay any damages
- as a result, the Commercial Contributor must pay those damages.
- </p>
- <h2 id="warranty">5. NO WARRANTY</h2>
- <p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT PERMITTED
- BY APPLICABLE LAW, THE PROGRAM IS PROVIDED ON AN “AS IS” BASIS, WITHOUT
- WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING,
- WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT,
- MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. Each Recipient is
- solely responsible for determining the appropriateness of using and
- distributing the Program and assumes all risks associated with its
- exercise of rights under this Agreement, including but not limited to the
- risks and costs of program errors, compliance with applicable laws, damage
- to or loss of data, programs or equipment, and unavailability or
- interruption of operations.
- </p>
- <h2 id="disclaimer">6. DISCLAIMER OF LIABILITY</h2>
- <p>EXCEPT AS EXPRESSLY SET FORTH IN THIS AGREEMENT, AND TO THE EXTENT PERMITTED
- BY APPLICABLE LAW, NEITHER RECIPIENT NOR ANY CONTRIBUTORS SHALL HAVE ANY
- LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
- OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS),
- HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
- LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
- OUT OF THE USE OR DISTRIBUTION OF THE PROGRAM OR THE EXERCISE OF ANY RIGHTS
- GRANTED HEREUNDER, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
- </p>
- <h2 id="general">7. GENERAL</h2>
- <p>If any provision of this Agreement is invalid or unenforceable under
- applicable law, it shall not affect the validity or enforceability of the
- remainder of the terms of this Agreement, and without further action by the
- parties hereto, such provision shall be reformed to the minimum extent
- necessary to make such provision valid and enforceable.
- </p>
- <p>If Recipient institutes patent litigation against any entity (including a
- cross-claim or counterclaim in a lawsuit) alleging that the Program itself
- (excluding combinations of the Program with other software or hardware)
- infringes such Recipient's patent(s), then such Recipient's rights granted
- under Section 2(b) shall terminate as of the date such litigation is filed.
- </p>
- <p>All Recipient's rights under this Agreement shall terminate if it fails to
- comply with any of the material terms or conditions of this Agreement and
- does not cure such failure in a reasonable period of time after becoming
- aware of such noncompliance. If all Recipient's rights under this Agreement
- terminate, Recipient agrees to cease use and distribution of the Program
- as soon as reasonably practicable. However, Recipient's obligations under
- this Agreement and any licenses granted by Recipient relating to the
- Program shall continue and survive.
- </p>
- <p>Everyone is permitted to copy and distribute copies of this Agreement,
- but in order to avoid inconsistency the Agreement is copyrighted and may
- only be modified in the following manner. The Agreement Steward reserves
- the right to publish new versions (including revisions) of this Agreement
- from time to time. No one other than the Agreement Steward has the right
- to modify this Agreement. The Eclipse Foundation is the initial Agreement
- Steward. The Eclipse Foundation may assign the responsibility to serve as
- the Agreement Steward to a suitable separate entity. Each new version of
- the Agreement will be given a distinguishing version number. The Program
- (including Contributions) may always be Distributed subject to the version
- of the Agreement under which it was received. In addition, after a new
- version of the Agreement is published, Contributor may elect to Distribute
- the Program (including its Contributions) under the new version.
- </p>
- <p>Except as expressly stated in Sections 2(a) and 2(b) above, Recipient
- receives no rights or licenses to the intellectual property of any
- Contributor under this Agreement, whether expressly, by implication,
- estoppel or otherwise. All rights in the Program not expressly granted
- under this Agreement are reserved. Nothing in this Agreement is intended
- to be enforceable by any entity that is not a Contributor or Recipient.
- No third-party beneficiary rights are created under this Agreement.
- </p>
- <h2 id="exhibit-a">Exhibit A – Form of Secondary Licenses Notice</h2>
- <p>“This Source Code may also be made available under the following
- Secondary Licenses when the conditions for such availability set forth
- in the Eclipse Public License, v. 2.0 are satisfied: {name license(s),
- version(s), and exceptions or additional permissions here}.”
- </p>
- <blockquote>
- <p>Simply including a copy of this Agreement, including this Exhibit A
- is not sufficient to license the Source Code under Secondary Licenses.
- </p>
- <p>If it is not possible or desirable to put the notice in a particular file,
- then You may include the notice in a location (such as a LICENSE file in a
- relevant directory) where a recipient would be likely to look for
- such a notice.
- </p>
- <p>You may add additional accurate notices of copyright ownership.</p>
- </blockquote>
- </body>
-</html>
\ No newline at end of file
diff --git a/framework/features/org.eclipse.app4mc.transformation.log4j.configuration.feature/feature.xml b/framework/features/org.eclipse.app4mc.transformation.log4j.configuration.feature/feature.xml
deleted file mode 100644
index f0a0902..0000000
--- a/framework/features/org.eclipse.app4mc.transformation.log4j.configuration.feature/feature.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<feature
- id="org.eclipse.app4mc.transformation.log4j.configuration.feature"
- label="Log4j Configuration"
- version="1.1.0.qualifier"
- provider-name="Eclipse APP4MC"
- license-feature="org.eclipse.license"
- license-feature-version="0.0.0">
-
- <description url="https://projects.eclipse.org/projects/automotive.app4mc">
- Log4j configuration for model transformation.
-
-Includes appender for the Eclipse UI and an appender per transformation session.
- </description>
-
- <copyright url="https://projects.eclipse.org/projects/automotive.app4mc">
- (c) Copyright Eclipse APP4MC contributors and others. 2018-2021.
-All rights reserved.
- </copyright>
-
- <plugin
- id="org.eclipse.app4mc.transformation.log4j.configuration"
- download-size="0"
- install-size="0"
- version="0.0.0"
- fragment="true"
- unpack="false"/>
-
-</feature>
diff --git a/framework/plugins/org.eclipse.app4mc.transformation.log4j.configuration/.classpath b/framework/plugins/org.eclipse.app4mc.transformation.log4j.configuration/.classpath
deleted file mode 100644
index eca7bdb..0000000
--- a/framework/plugins/org.eclipse.app4mc.transformation.log4j.configuration/.classpath
+++ /dev/null
@@ -1,7 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<classpath>
- <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
- <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
- <classpathentry kind="src" path="src"/>
- <classpathentry kind="output" path="bin"/>
-</classpath>
diff --git a/framework/plugins/org.eclipse.app4mc.transformation.log4j.configuration/.project b/framework/plugins/org.eclipse.app4mc.transformation.log4j.configuration/.project
deleted file mode 100644
index f56fc7f..0000000
--- a/framework/plugins/org.eclipse.app4mc.transformation.log4j.configuration/.project
+++ /dev/null
@@ -1,28 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<projectDescription>
- <name>org.eclipse.app4mc.transformation.log4j.configuration</name>
- <comment></comment>
- <projects>
- </projects>
- <buildSpec>
- <buildCommand>
- <name>org.eclipse.jdt.core.javabuilder</name>
- <arguments>
- </arguments>
- </buildCommand>
- <buildCommand>
- <name>org.eclipse.pde.ManifestBuilder</name>
- <arguments>
- </arguments>
- </buildCommand>
- <buildCommand>
- <name>org.eclipse.pde.SchemaBuilder</name>
- <arguments>
- </arguments>
- </buildCommand>
- </buildSpec>
- <natures>
- <nature>org.eclipse.pde.PluginNature</nature>
- <nature>org.eclipse.jdt.core.javanature</nature>
- </natures>
-</projectDescription>
diff --git a/framework/plugins/org.eclipse.app4mc.transformation.log4j.configuration/.settings/org.eclipse.core.resources.prefs b/framework/plugins/org.eclipse.app4mc.transformation.log4j.configuration/.settings/org.eclipse.core.resources.prefs
deleted file mode 100644
index 99f26c0..0000000
--- a/framework/plugins/org.eclipse.app4mc.transformation.log4j.configuration/.settings/org.eclipse.core.resources.prefs
+++ /dev/null
@@ -1,2 +0,0 @@
-eclipse.preferences.version=1
-encoding/<project>=UTF-8
diff --git a/framework/plugins/org.eclipse.app4mc.transformation.log4j.configuration/.settings/org.eclipse.jdt.core.prefs b/framework/plugins/org.eclipse.app4mc.transformation.log4j.configuration/.settings/org.eclipse.jdt.core.prefs
deleted file mode 100644
index 9f6ece8..0000000
--- a/framework/plugins/org.eclipse.app4mc.transformation.log4j.configuration/.settings/org.eclipse.jdt.core.prefs
+++ /dev/null
@@ -1,8 +0,0 @@
-eclipse.preferences.version=1
-org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
-org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.8
-org.eclipse.jdt.core.compiler.compliance=1.8
-org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
-org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
-org.eclipse.jdt.core.compiler.release=disabled
-org.eclipse.jdt.core.compiler.source=1.8
diff --git a/framework/plugins/org.eclipse.app4mc.transformation.log4j.configuration/META-INF/MANIFEST.MF b/framework/plugins/org.eclipse.app4mc.transformation.log4j.configuration/META-INF/MANIFEST.MF
deleted file mode 100644
index 2a4729f..0000000
--- a/framework/plugins/org.eclipse.app4mc.transformation.log4j.configuration/META-INF/MANIFEST.MF
+++ /dev/null
@@ -1,20 +0,0 @@
-Manifest-Version: 1.0
-Bundle-ManifestVersion: 2
-Bundle-Name: APP4MC Transformation Log4j Configuration
-Bundle-SymbolicName: org.eclipse.app4mc.transformation.log4j.configuration
-Bundle-Version: 1.1.0.qualifier
-Fragment-Host: org.apache.log4j;bundle-version="1.2.15"
-Automatic-Module-Name: org.eclipse.app4mc.amalthea.converters.log4j.configuration
-Bundle-RequiredExecutionEnvironment: JavaSE-1.8
-Require-Bundle: org.eclipse.equinox.common;bundle-version="3.10.0";resolution:=optional,
- org.eclipse.core.runtime;bundle-version="3.14.0";resolution:=optional,
- org.eclipse.ui.console;resolution:=optional,
- org.eclipse.ui;bundle-version="3.115.0";resolution:=optional
-Bundle-Vendor: Eclipse APP4MC
-Import-Package: javax.xml.parsers,
- org.eclipse.equinox.log;version="1.0.0";resolution:=optional,
- org.osgi.framework;version="1.9.0";resolution:=optional,
- org.osgi.service.log;version="1.4.0";resolution:=optional,
- org.osgi.util.tracker;version="1.5.2";resolution:=optional,
- org.w3c.dom,
- org.xml.sax
diff --git a/framework/plugins/org.eclipse.app4mc.transformation.log4j.configuration/build.properties b/framework/plugins/org.eclipse.app4mc.transformation.log4j.configuration/build.properties
deleted file mode 100644
index a73d166..0000000
--- a/framework/plugins/org.eclipse.app4mc.transformation.log4j.configuration/build.properties
+++ /dev/null
@@ -1,8 +0,0 @@
-source.. = src/
-output.. = bin/
-bin.includes = META-INF/,\
- .,\
- log4j.xml,\
- headless_log4j.xml
-src.includes = log4j.xml,\
- headless_log4j.xml
diff --git a/framework/plugins/org.eclipse.app4mc.transformation.log4j.configuration/headless_log4j.xml b/framework/plugins/org.eclipse.app4mc.transformation.log4j.configuration/headless_log4j.xml
deleted file mode 100644
index 57d96ca..0000000
--- a/framework/plugins/org.eclipse.app4mc.transformation.log4j.configuration/headless_log4j.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" ?>
-<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
-<log4j:configuration xmlns:log4j='http://jakarta.apache.org/log4j/'>
-
- <appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender">
- <!-- only log errors to the console -->
- <param name="Threshold" value="${app4mctransformation.log.level}"/>
- <layout class="org.apache.log4j.PatternLayout">
- <param name="ConversionPattern" value="%m%n" />
- </layout>
- </appender>
-
- <appender name="FILE" class="org.eclipse.app4mc.transformation.log4j.configuration.CustFileAppender">
- <param name="append" value="false"/>
- <layout class="org.apache.log4j.PatternLayout">
- <param name="ConversionPattern"
- value="%d{yyyy-MM-dd_HH_mm_ss} - %-5p: %m%n" />
- </layout>
- </appender>
-
- <root>
- <!-- set the log level to debug to catch everything -->
- <!-- on the appenders the threshold is set to filter further -->
- <level value="debug" />
- <appender-ref ref="CONSOLE" />
- <appender-ref ref="FILE" />
- </root>
-
-</log4j:configuration>
\ No newline at end of file
diff --git a/framework/plugins/org.eclipse.app4mc.transformation.log4j.configuration/log4j.xml b/framework/plugins/org.eclipse.app4mc.transformation.log4j.configuration/log4j.xml
deleted file mode 100644
index d60830f..0000000
--- a/framework/plugins/org.eclipse.app4mc.transformation.log4j.configuration/log4j.xml
+++ /dev/null
@@ -1,45 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" ?>
-<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
-<log4j:configuration xmlns:log4j='http://jakarta.apache.org/log4j/'>
-
- <appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender">
- <!-- only log errors to the console -->
- <param name="Threshold" value="${app4mctransformation.log.level}"/>
- <layout class="org.apache.log4j.PatternLayout">
- <param name="ConversionPattern" value="%m%n" />
- </layout>
- </appender>
-
- <appender name="FILE" class="org.eclipse.app4mc.transformation.log4j.configuration.CustFileAppender">
- <param name="append" value="true"/>
- <layout class="org.apache.log4j.PatternLayout">
- <param name="ConversionPattern"
- value="%d{yyyy-MM-dd_HH_mm_ss} - %-5p: %m%n" />
- </layout>
- </appender>
-
- <appender name="ECLIPSE" class="org.eclipse.app4mc.transformation.log4j.configuration.EclipseLogAppender">
- <!-- only log errors to the eclipse log -->
- <param name="Threshold" value="ERROR"/>
- </appender>
-
- <appender name="ECLIPSE_CONSOLE" class="org.eclipse.app4mc.transformation.log4j.configuration.CustomConsoleAppender">
- <!-- only log errors to the console -->
- <param name="Threshold" value="${app4mctransformation.log.level}"/>
- <layout class="org.apache.log4j.PatternLayout">
- <param name="ConversionPattern"
- value="%d{yyyy-MM-dd_HH_mm_ss} - %-5p: %m%n" />
- </layout>
- </appender>
-
- <root>
- <!-- set the log level to debug to catch everything -->
- <!-- on the appenders the threshold is set to filter further -->
- <level value="debug" />
- <!-- <appender-ref ref="CONSOLE" /> -->
- <appender-ref ref="ECLIPSE" />
- <appender-ref ref="FILE" />
- <appender-ref ref="ECLIPSE_CONSOLE" />
- </root>
-
-</log4j:configuration>
\ No newline at end of file
diff --git a/framework/plugins/org.eclipse.app4mc.transformation.log4j.configuration/src/org/eclipse/app4mc/transformation/log4j/configuration/CustFileAppender.java b/framework/plugins/org.eclipse.app4mc.transformation.log4j.configuration/src/org/eclipse/app4mc/transformation/log4j/configuration/CustFileAppender.java
deleted file mode 100644
index 32c784f..0000000
--- a/framework/plugins/org.eclipse.app4mc.transformation.log4j.configuration/src/org/eclipse/app4mc/transformation/log4j/configuration/CustFileAppender.java
+++ /dev/null
@@ -1,68 +0,0 @@
-/*******************************************************************************
- *
- * Copyright (c) 2018, 2021 Robert Bosch GmbH.
- *
- * This program and the accompanying materials are made
- * available under the terms of the Eclipse Public License 2.0
- * which is available at https://www.eclipse.org/legal/epl-2.0/
- *
- * SPDX-License-Identifier: EPL-2.0
- *
- * Contributors:
- * Robert Bosch GmbH - initial API and implementation
- *******************************************************************************/
-
-package org.eclipse.app4mc.transformation.log4j.configuration;
-
-import java.io.File;
-
-import org.apache.log4j.FileAppender;
-
-/**
- * Custom Log4j appender that is writing log statements to a dedicated log file
- * if the system property <i>APP4MC_TRANSFORMATION_LOG_FILE</i> is set. With
- * this mechanism it is possible to write a log file per transformation session
- * to a dedicated log file only.
- */
-public class CustFileAppender extends FileAppender {
-
- private String currentLogFile;
-
- @Override
- protected boolean checkEntryConditions() {
- // we only append if an output directory is set
- String logFilePath = System.getProperty("APP4MC_TRANSFORMATION_LOG_FILE");
- if (logFilePath != null) {
- if (this.currentLogFile == null || !this.currentLogFile.equals(logFilePath)) {
- // close an open file as the output directory changed
- closeFile();
-
- this.currentLogFile = logFilePath;
- // create and set a new session log file
- createNewFile();
- }
-
- return super.checkEntryConditions();
- } else if (currentLogFile != null) {
- // system property is null but local output directory is set
- // so we assume the session logging was disabled
- closeFile();
- this.currentLogFile = null;
- }
- return false;
- }
-
- private void createNewFile() {
- super.setFile(new File(this.currentLogFile).getAbsolutePath());
- super.activateOptions();
- }
-
- @Override
- public void activateOptions() {
- // simply avoid the log warning for missing fileName configuration
- if (fileName != null) {
- super.activateOptions();
- }
- }
-
-}
diff --git a/framework/plugins/org.eclipse.app4mc.transformation.log4j.configuration/src/org/eclipse/app4mc/transformation/log4j/configuration/CustomConsoleAppender.java b/framework/plugins/org.eclipse.app4mc.transformation.log4j.configuration/src/org/eclipse/app4mc/transformation/log4j/configuration/CustomConsoleAppender.java
deleted file mode 100644
index 766b776..0000000
--- a/framework/plugins/org.eclipse.app4mc.transformation.log4j.configuration/src/org/eclipse/app4mc/transformation/log4j/configuration/CustomConsoleAppender.java
+++ /dev/null
@@ -1,115 +0,0 @@
-/*******************************************************************************
- *
- * Copyright (c) 2018, 2020 Robert Bosch GmbH.
- *
- * This program and the accompanying materials are made
- * available under the terms of the Eclipse Public License 2.0
- * which is available at https://www.eclipse.org/legal/epl-2.0/
- *
- * SPDX-License-Identifier: EPL-2.0
- *
- * Contributors:
- * Robert Bosch GmbH - initial API and implementation
- *******************************************************************************/
-
-package org.eclipse.app4mc.transformation.log4j.configuration;
-
-import java.io.IOException;
-
-import org.apache.log4j.ConsoleAppender;
-import org.apache.log4j.Layout;
-import org.apache.log4j.spi.LoggingEvent;
-import org.eclipse.ui.IViewPart;
-import org.eclipse.ui.PartInitException;
-import org.eclipse.ui.PlatformUI;
-import org.eclipse.ui.console.ConsolePlugin;
-import org.eclipse.ui.console.IConsole;
-import org.eclipse.ui.console.IConsoleConstants;
-import org.eclipse.ui.console.IConsoleManager;
-import org.eclipse.ui.console.MessageConsole;
-import org.eclipse.ui.console.MessageConsoleStream;
-
-public class CustomConsoleAppender extends ConsoleAppender {
-
- public CustomConsoleAppender() {
- }
-
- public CustomConsoleAppender(Layout layout) {
- super(layout, SYSTEM_OUT);
- }
-
- public CustomConsoleAppender(Layout layout, String target) {
- super.setLayout(layout);
- super.setTarget(target);
- super.activateOptions();
- }
-
- private MessageConsole myConsole;
-
- @Override
- public void append(LoggingEvent event) {
- if (logMessageOnConsole(event) == false) {
- myConsole = findConsole("ASF SLG");
- logMessageOnConsole(event);
- }
- }
-
- @Override
- public synchronized void doAppend(LoggingEvent event) {
-
- if (logMessageOnConsole(event) == false) {
- myConsole = findConsole("ASF SLG");
- logMessageOnConsole(event);
- }
- }
-
- private boolean logMessageOnConsole(LoggingEvent event) {
- if (myConsole != null) {
- try (MessageConsoleStream out = myConsole.newMessageStream()) {
- out.println(event.getMessage().toString());
- } catch (IOException e) {
- // ignore
- }
- return true;
- }
- return false;
- }
-
- private MessageConsole findConsole(String name) {
-
- openConsoleView();
- ConsolePlugin plugin = ConsolePlugin.getDefault();
- if (plugin != null) {
- IConsoleManager conMan = plugin.getConsoleManager();
- if (conMan != null) {
- IConsole[] existing = conMan.getConsoles();
- for (int i = 0; i < existing.length; i++)
- if (name.equals(existing[i].getName()))
- return (MessageConsole) existing[i];
- // no console found, so create a new one
- MessageConsole myConsole = new MessageConsole(name, null);
- conMan.addConsoles(new IConsole[] { myConsole });
-
- return myConsole;
-
- }
-
- }
- return null;
- }
-
- private void openConsoleView() {
- try {
- IViewPart findView = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage()
- .findView(IConsoleConstants.ID_CONSOLE_VIEW);
- if (findView == null) {
- PlatformUI.getWorkbench().getActiveWorkbenchWindow().getActivePage()
- .showView(IConsoleConstants.ID_CONSOLE_VIEW);
- }
-
- } catch (PartInitException e) {
- // TODO:Currently not logging any message for this exception
- }
- }
-
-}
diff --git a/framework/plugins/org.eclipse.app4mc.transformation.log4j.configuration/src/org/eclipse/app4mc/transformation/log4j/configuration/EclipseLogAppender.java b/framework/plugins/org.eclipse.app4mc.transformation.log4j.configuration/src/org/eclipse/app4mc/transformation/log4j/configuration/EclipseLogAppender.java
deleted file mode 100644
index 321c46f..0000000
--- a/framework/plugins/org.eclipse.app4mc.transformation.log4j.configuration/src/org/eclipse/app4mc/transformation/log4j/configuration/EclipseLogAppender.java
+++ /dev/null
@@ -1,77 +0,0 @@
-/*******************************************************************************
- *
- * Copyright (c) 2018, 2020 Robert Bosch GmbH.
- *
- * This program and the accompanying materials are made
- * available under the terms of the Eclipse Public License 2.0
- * which is available at https://www.eclipse.org/legal/epl-2.0/
- *
- * SPDX-License-Identifier: EPL-2.0
- *
- * Contributors:
- * Robert Bosch GmbH - initial API and implementation
- *******************************************************************************/
-
-package org.eclipse.app4mc.transformation.log4j.configuration;
-
-import org.apache.log4j.AppenderSkeleton;
-import org.apache.log4j.Level;
-import org.apache.log4j.spi.LoggingEvent;
-import org.apache.log4j.spi.ThrowableInformation;
-import org.eclipse.core.runtime.IStatus;
-import org.eclipse.core.runtime.Platform;
-import org.eclipse.core.runtime.Status;
-import org.osgi.framework.Bundle;
-import org.osgi.framework.FrameworkUtil;
-
-/**
- * Custom Log4j appender that forwards log statements to the Eclipse logging mechanism.
- */
-public class EclipseLogAppender extends AppenderSkeleton {
-
- private int getStatus(final LoggingEvent event) {
- final Level level = event.getLevel();
-
- int status = IStatus.INFO;
-
- if (level == Level.ERROR) {
- status = IStatus.ERROR;
- } else if (level == Level.INFO) {
- status = IStatus.INFO;
- } else if (level == Level.WARN) {
- status = IStatus.WARNING;
- } else if (level == Level.FATAL) {
- status = IStatus.ERROR;
- }
- return status;
- }
-
- @Override
- protected void append(final LoggingEvent event) {
-
- final Object messageObject = event.getMessage();
- final ThrowableInformation throwableInformation = event.getThrowableInformation();
- final int status = getStatus(event);
-
- Bundle bundle = FrameworkUtil.getBundle(getClass());
- if (bundle != null) {
- if (throwableInformation != null) {
- Platform.getLog(bundle).log(new Status(status, bundle.getSymbolicName(),
- messageObject != null ? messageObject.toString() : "", throwableInformation.getThrowable()));
- } else {
- Platform.getLog(bundle).log(new Status(status, bundle.getSymbolicName(),
- messageObject != null ? messageObject.toString() : ""));
- }
- }
- }
-
- @Override
- public void close() {
- }
-
- @Override
- public boolean requiresLayout() {
- return false;
- }
-
-}
diff --git a/framework/plugins/org.eclipse.app4mc.transformation.starter/src/org/eclipse/app4mc/transformation/starter/EquinoxTransformationStarter.java b/framework/plugins/org.eclipse.app4mc.transformation.starter/src/org/eclipse/app4mc/transformation/starter/EquinoxTransformationStarter.java
index 6803dc0..8bc775f 100644
--- a/framework/plugins/org.eclipse.app4mc.transformation.starter/src/org/eclipse/app4mc/transformation/starter/EquinoxTransformationStarter.java
+++ b/framework/plugins/org.eclipse.app4mc.transformation.starter/src/org/eclipse/app4mc/transformation/starter/EquinoxTransformationStarter.java
@@ -115,7 +115,13 @@
}
}
- this.transformationProcessor.startTransformation(propertiesFile, workingDirectory);
+ try {
+ this.transformationProcessor.startTransformation(propertiesFile, workingDirectory);
+ } catch (Exception e) {
+ // if an exception occurs we kill the application
+ System.err.println("Error in transformation setup: " + e.getMessage());
+ System.exit(0);
+ }
}
@Override
diff --git a/framework/plugins/org.eclipse.app4mc.transformation.ui/META-INF/MANIFEST.MF b/framework/plugins/org.eclipse.app4mc.transformation.ui/META-INF/MANIFEST.MF
index a0ab0da..aaf1205 100644
--- a/framework/plugins/org.eclipse.app4mc.transformation.ui/META-INF/MANIFEST.MF
+++ b/framework/plugins/org.eclipse.app4mc.transformation.ui/META-INF/MANIFEST.MF
@@ -27,3 +27,4 @@
org.osgi.service.event;version="1.4.0"
Automatic-Module-Name: org.eclipse.app4mc.transformation.ui
Bundle-ActivationPolicy: lazy
+Export-Package: org.eclipse.app4mc.transformation.ui.dialog
diff --git a/framework/plugins/org.eclipse.app4mc.transformation.ui/fragment.e4xmi b/framework/plugins/org.eclipse.app4mc.transformation.ui/fragment.e4xmi
index 8bc2fec..048e79c 100644
--- a/framework/plugins/org.eclipse.app4mc.transformation.ui/fragment.e4xmi
+++ b/framework/plugins/org.eclipse.app4mc.transformation.ui/fragment.e4xmi
@@ -4,7 +4,7 @@
<elements xsi:type="commands:Command" xmi:id="_BpXQ8IfJEeuDraQmPJFu-Q" elementId="org.eclipse.app4mc.transformation.ui.command.transformation" commandName="Transformation" description="Opens a wizard to transform an Amalthea model"/>
</fragments>
<fragments xsi:type="fragment:StringModelFragment" xmi:id="_hCM8EIfJEeuDraQmPJFu-Q" featurename="handlers" parentElementId="xpath:/">
- <elements xsi:type="commands:Handler" xmi:id="_iSHr0IfJEeuDraQmPJFu-Q" elementId="org.eclipse.app4mc.transformation.ui.handler.0" contributionURI="bundleclass://org.eclipse.app4mc.transformation.ui/org.eclipse.app4mc.transformation.ui.handler.TransformationHandler" command="_BpXQ8IfJEeuDraQmPJFu-Q"/>
+ <elements xsi:type="commands:Handler" xmi:id="_iSHr0IfJEeuDraQmPJFu-Q" elementId="org.eclipse.app4mc.transformation.ui.handler.transformation" contributionURI="bundleclass://org.eclipse.app4mc.transformation.ui/org.eclipse.app4mc.transformation.ui.handler.TransformationHandler" command="_BpXQ8IfJEeuDraQmPJFu-Q"/>
</fragments>
<fragments xsi:type="fragment:StringModelFragment" xmi:id="_3Ywj0IfIEeuDraQmPJFu-Q" featurename="menuContributions" parentElementId="xpath:/">
<elements xsi:type="menu:MenuContribution" xmi:id="_5uqrQIfIEeuDraQmPJFu-Q" elementId="org.eclipse.app4mc.transformation.ui.menucontribution.0" positionInParent="after=additions" parentId="fileMenu">
diff --git a/framework/plugins/org.eclipse.app4mc.transformation.ui/src/org/eclipse/app4mc/transformation/ui/dialog/TransformationDialog.java b/framework/plugins/org.eclipse.app4mc.transformation.ui/src/org/eclipse/app4mc/transformation/ui/dialog/TransformationDialog.java
index 24880df..4b73201 100644
--- a/framework/plugins/org.eclipse.app4mc.transformation.ui/src/org/eclipse/app4mc/transformation/ui/dialog/TransformationDialog.java
+++ b/framework/plugins/org.eclipse.app4mc.transformation.ui/src/org/eclipse/app4mc/transformation/ui/dialog/TransformationDialog.java
@@ -12,10 +12,13 @@
*******************************************************************************/
package org.eclipse.app4mc.transformation.ui.dialog;
+import java.io.File;
import java.nio.file.Path;
import java.util.ArrayList;
import java.util.Dictionary;
+import java.util.HashMap;
import java.util.Hashtable;
+import java.util.LinkedHashMap;
import java.util.List;
import java.util.Properties;
import java.util.stream.Collectors;
@@ -25,12 +28,14 @@
import org.eclipse.app4mc.transformation.ServiceConstants;
import org.eclipse.app4mc.transformation.TransformationConstants;
import org.eclipse.app4mc.transformation.TransformationDefinition;
+import org.eclipse.app4mc.transformation.TransformationDefinition.TransformationParameter;
import org.eclipse.app4mc.transformation.TransformationProcessor;
import org.eclipse.core.resources.IProject;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.core.runtime.Platform;
+import org.eclipse.e4.core.contexts.IEclipseContext;
import org.eclipse.e4.core.di.annotations.Optional;
import org.eclipse.e4.core.di.extensions.Service;
import org.eclipse.e4.core.services.events.IEventBroker;
@@ -39,14 +44,15 @@
import org.eclipse.jface.layout.GridDataFactory;
import org.eclipse.jface.widgets.WidgetFactory;
import org.eclipse.swt.SWT;
-import org.eclipse.swt.graphics.Point;
import org.eclipse.swt.layout.GridLayout;
import org.eclipse.swt.widgets.Button;
import org.eclipse.swt.widgets.Composite;
import org.eclipse.swt.widgets.Control;
import org.eclipse.swt.widgets.DirectoryDialog;
import org.eclipse.swt.widgets.Display;
+import org.eclipse.swt.widgets.FileDialog;
import org.eclipse.swt.widgets.Group;
+import org.eclipse.swt.widgets.Label;
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.widgets.Text;
import org.osgi.framework.Bundle;
@@ -69,20 +75,17 @@
private Text outputFolderText;
private Path inputPath;
+ private IProject project;
- // TODO add extension mechanism to provide additional ui configurations in the dialog, e.g. SLG ConfigModel
-
-// private Text configModelText;
-//
-// private Button experimentalCodeSnippetButton;
-// private Button enableInstrumentationButton;
-
-// private ConfigModel configModel;
+ private IEclipseContext context;
private ServiceRegistration<?> eventHandler = null;
private IEventBroker eventBroker;
+ private LinkedHashMap<String, List<TransformationParameter>> additionalParams = new LinkedHashMap<>();
+ private HashMap<String, Control> additionalControls = new HashMap<>();
+
@Inject
public TransformationDialog(
Shell parentShell,
@@ -90,8 +93,8 @@
@Service List<TransformationDefinition> definitions,
IEventBroker broker,
@Optional Path inputPath,
- @Optional IProject project/*,
- @Optional ConfigModel configModel*/) {
+ @Optional IProject project,
+ IEclipseContext context) {
super(parentShell);
this.processor = processor;
@@ -100,39 +103,17 @@
this.eventBroker = broker;
this.inputPath = inputPath;
-// this.configModel = configModel;
+ this.project = project;
+ this.context = context;
- // register the eventhandler
- Bundle bundle = FrameworkUtil.getBundle(getClass());
- BundleContext bc = (bundle != null) ? bundle.getBundleContext() : null;
- if (bc != null) {
- Dictionary<String, Object> props = new Hashtable<>();
- props.put(EventConstants.EVENT_TOPIC, "org/osgi/service/cm/ConfigurationEvent/CM_DELETED");
- // register the EventHandler service
- this.eventHandler = bc.registerService(
- EventHandler.class.getName(),
- (EventHandler) event -> {
- if (event.getProperty("cm.factoryPid").equals(ServiceConstants.SESSION_CONFIGURATION_PID)) {
- Display.getDefault().asyncExec(() -> {
- MessageDialog.openInformation(getParentShell(), "Transformation finished", "Transformation finished");
-
- if (project != null) {
- try {
- project.refreshLocal(IResource.DEPTH_INFINITE, new NullProgressMonitor());
- } catch (final CoreException e) {
- Platform.getLog(getClass()).error(e.getLocalizedMessage(), e);
- }
- }
-
- eventHandler.unregister();
-
- // send event to stop listening
- eventBroker.send("org/eclipse/app4mc/transformation/FINISHED", "FINISHED");
- });
- }
- },
- props);
- }
+ // collect additional parameters
+ definitions.stream().flatMap(def -> def.getTransformationParameter().stream()).forEach(param -> {
+ List<TransformationParameter> groupParams = additionalParams.computeIfAbsent(param.groupName, emp -> new ArrayList<>());
+ if (groupParams.stream().noneMatch(p -> p.parameterKey.equals(param.parameterKey))) {
+ groupParams.add(param);
+ }
+ });
+
}
@Override
@@ -191,70 +172,102 @@
}
})
.create(container);
-
- /*
- // SLG specific settings
- Group slgGroup = new Group(container, SWT.SHADOW_NONE);
- slgGroup.setText("SLG Settings");
- slgGroup.setLayout(new GridLayout(3, false));
- GridDataFactory.fillDefaults().span(3, 1).grab(true, false).applyTo(slgGroup);
-
- // configuration file
- WidgetFactory
- .label(SWT.NONE)
- .text("Configuration Model")
- .create(slgGroup);
-
- this.configModelText = new Text(slgGroup, SWT.BORDER);
- GridDataFactory
- .swtDefaults()
- .align(SWT.FILL, SWT.BEGINNING)
- .grab(true, false)
- .applyTo(configModelText);
+ // specific settings contributed by transformation implementations
+ additionalParams.entrySet().stream().forEach(entry -> {
+ Group group = new Group(container, SWT.SHADOW_NONE);
+ group.setLayout(new GridLayout());
+ group.setText(entry.getKey());
+ GridDataFactory.fillDefaults().span(3, 1).grab(true, false).applyTo(group);
+ entry.getValue().stream().forEach(param -> {
+
+ Composite elementContainer = new Composite(group, SWT.NONE);
+ GridDataFactory.fillDefaults().grab(true, false).applyTo(elementContainer);
+ if (param.parameterType == File.class) {
+ elementContainer.setLayout(new GridLayout(3, false));
- Button configModelButton = WidgetFactory
- .button(SWT.PUSH)
- .text("...")
- .onSelect(e -> {
- FileDialog fileDialog = new FileDialog(getShell());
- fileDialog.setText("Select the configuration model file");
- String selectedFile = fileDialog.open();
- if (selectedFile != null) {
- configModelText.setText(selectedFile);
+ WidgetFactory
+ .label(SWT.NONE)
+ .text(param.parameterName)
+ .create(elementContainer);
+
+ Text elementText = new Text(elementContainer, SWT.BORDER);
+ GridDataFactory
+ .swtDefaults()
+ .align(SWT.FILL, SWT.BEGINNING)
+ .grab(true, false)
+ .applyTo(elementText);
+
+ this.additionalControls.put(param.parameterKey, elementText);
+
+ Button elementButton = WidgetFactory
+ .button(SWT.PUSH)
+ .text("...")
+ .onSelect(e -> {
+ if (param.parameterKey.toLowerCase().endsWith("folder")) {
+ DirectoryDialog directoryDialog = new DirectoryDialog(getShell());
+ directoryDialog.setText("Select the " + param.parameterName + " directory");
+ String selectedFile = directoryDialog.open();
+ if (selectedFile != null) {
+ elementText.setText(selectedFile);
+ }
+ } else {
+ FileDialog fileDialog = new FileDialog(getShell());
+ fileDialog.setText("Select the " + param.parameterName + " file");
+ String selectedFile = fileDialog.open();
+ if (selectedFile != null) {
+ elementText.setText(selectedFile);
+ }
+ }
+ })
+ .create(elementContainer);
+
+ Object parameterValue = context.get(param.parameterKey);
+ if (parameterValue != null) {
+ elementText.setText(parameterValue.toString());
+ elementText.setEditable(false);
+ elementButton.setEnabled(false);
+ }
+
+ } else if (param.parameterType == Boolean.class) {
+ elementContainer.setLayout(new GridLayout(2, false));
+ Button elementButton = WidgetFactory
+ .button(SWT.CHECK)
+ .create(elementContainer);
+
+ this.additionalControls.put(param.parameterKey, elementButton);
+
+ Label elementLabel = WidgetFactory
+ .label(SWT.NONE)
+ .text(param.parameterName)
+ .create(elementContainer);
+ GridDataFactory
+ .swtDefaults()
+ .align(SWT.FILL, SWT.BEGINNING)
+ .grab(true, false)
+ .applyTo(elementLabel);
+
+ } else if (param.parameterType == String.class) {
+ elementContainer.setLayout(new GridLayout(2, false));
+
+ WidgetFactory
+ .label(SWT.NONE)
+ .text(param.parameterName)
+ .create(elementContainer);
+
+ Text elementText = WidgetFactory
+ .text(SWT.BORDER)
+ .create(elementContainer);
+ GridDataFactory
+ .swtDefaults()
+ .align(SWT.FILL, SWT.BEGINNING)
+ .grab(true, false)
+ .applyTo(elementText);
+
+ this.additionalControls.put(param.parameterKey, elementText);
}
- })
- .create(slgGroup);
-
- this.experimentalCodeSnippetButton = WidgetFactory
- .button(SWT.CHECK)
- .create(slgGroup);
- Label experimentalLabel = WidgetFactory
- .label(SWT.NONE)
- .text("Experimental Code Snippet Matching")
- .create(slgGroup);
- GridDataFactory
- .swtDefaults()
- .align(SWT.FILL, SWT.BEGINNING)
- .grab(true, false)
- .span(2, 1)
- .applyTo(experimentalLabel);
-
- this.enableInstrumentationButton = WidgetFactory
- .button(SWT.CHECK)
- .create(slgGroup);
- Label instrumentationLabel = WidgetFactory
- .label(SWT.NONE)
- .text("Enable Instrumentation")
- .create(slgGroup);
- GridDataFactory
- .swtDefaults()
- .align(SWT.FILL, SWT.BEGINNING)
- .grab(true, false)
- .span(2, 1)
- .applyTo(instrumentationLabel);
-
- */
+ });
+ });
// use already loaded models and lock selection otherwise
@@ -265,14 +278,6 @@
this.outputFolderText.setText(inputPath.resolve("result").toString());
}
-
- /*
- if (this.configModel != null) {
- this.configModelText.setText(this.configModel.eResource().getURI().toFileString());
- this.configModelText.setEditable(false);
- configModelButton.setEnabled(false);
- }
- */
// transformer
if (this.allDefinitions.stream().anyMatch(def -> def.getM2TKey() != null)) {
@@ -338,20 +343,64 @@
properties.put(TransformationConstants.OUTPUT_FOLDER, this.outputFolderText.getText());
if (!this.selectedM2TDefinitions.isEmpty()) {
List<String> keys = this.selectedM2TDefinitions.stream().map(TransformationDefinition::getM2TKey).collect(Collectors.toList());
- properties.put(TransformationConstants.M2T_TRANSFORMERS, String.join(",", keys));
+ if (!keys.isEmpty()) {
+ properties.put(TransformationConstants.M2T_TRANSFORMERS, String.join(",", keys));
+ }
}
if (!this.selectedM2MDefinitions.isEmpty()) {
List<String> keys = this.selectedM2MDefinitions.stream().map(TransformationDefinition::getM2MKey).collect(Collectors.toList());
- properties.put(TransformationConstants.M2M_TRANSFORMERS, String.join(",", keys));
+ if (!keys.isEmpty()) {
+ properties.put(TransformationConstants.M2M_TRANSFORMERS, String.join(",", keys));
+ }
+ }
+
+ if (!properties.containsKey(TransformationConstants.M2M_TRANSFORMERS)
+ && !properties.containsKey(TransformationConstants.M2T_TRANSFORMERS)) {
+ MessageDialog.openInformation(getParentShell(), "Transformation", "No transformation selected!");
+ return;
}
-
-// properties.put("configurationFile", configModelText.getText());
-//
-// properties.put("experimentalCodeSnippetMatching", Boolean.toString(this.experimentalCodeSnippetButton.getSelection()));
-// properties.put("enableInstrumentation", Boolean.toString(this.enableInstrumentationButton.getSelection()));
+ additionalControls.forEach((key, value) -> {
+ if (value instanceof Text) {
+ properties.put(key, ((Text)value).getText());
+ } else if (value instanceof Button) {
+ properties.put(key, Boolean.toString(((Button)value).getSelection()));
+ }
+ });
try {
+ // register the eventhandler
+ Bundle bundle = FrameworkUtil.getBundle(getClass());
+ BundleContext bc = (bundle != null) ? bundle.getBundleContext() : null;
+ if (bc != null) {
+ Dictionary<String, Object> props = new Hashtable<>();
+ props.put(EventConstants.EVENT_TOPIC, "org/osgi/service/cm/ConfigurationEvent/CM_DELETED");
+ // register the EventHandler service
+ this.eventHandler = bc.registerService(
+ EventHandler.class.getName(),
+ (EventHandler) event -> {
+ if (event.getProperty("cm.factoryPid").equals(ServiceConstants.SESSION_CONFIGURATION_PID)) {
+ Display.getDefault().asyncExec(() -> {
+ MessageDialog.openInformation(getParentShell(), "Transformation finished", "Transformation finished");
+
+ if (project != null) {
+ try {
+ project.refreshLocal(IResource.DEPTH_INFINITE, new NullProgressMonitor());
+ } catch (final CoreException e) {
+ Platform.getLog(getClass()).error(e.getLocalizedMessage(), e);
+ }
+ }
+
+ eventHandler.unregister();
+
+ // send event to stop listening
+ eventBroker.send("org/eclipse/app4mc/transformation/FINISHED", properties.get(TransformationConstants.LOG_FILE));
+ });
+ }
+ },
+ props);
+ }
+
// start transformation
this.processor.startTransformation(properties);
@@ -372,13 +421,6 @@
}
@Override
- protected Point getInitialSize() {
- return new Point(
- convertHorizontalDLUsToPixels(250),
- convertVerticalDLUsToPixels(200));
- }
-
- @Override
protected boolean isResizable() {
return true;
}
diff --git a/framework/plugins/org.eclipse.app4mc.transformation/META-INF/MANIFEST.MF b/framework/plugins/org.eclipse.app4mc.transformation/META-INF/MANIFEST.MF
index a858c3a..fc4805b 100644
--- a/framework/plugins/org.eclipse.app4mc.transformation/META-INF/MANIFEST.MF
+++ b/framework/plugins/org.eclipse.app4mc.transformation/META-INF/MANIFEST.MF
@@ -5,19 +5,25 @@
Bundle-Version: 1.1.0.qualifier
Bundle-Vendor: Eclipse APP4MC
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
-Require-Bundle: com.google.inject;bundle-version="3.0.0",
- org.eclipse.emf.ecore;visibility:=reexport,
+Require-Bundle: org.eclipse.emf.ecore;visibility:=reexport,
org.eclipse.emf.ecore.xmi;visibility:=reexport
Export-Package: org.eclipse.app4mc.transformation;version="1.1.0",
- org.eclipse.app4mc.transformation.executiontype;version="1.1.0",
org.eclipse.app4mc.transformation.transformers;version="1.1.0",
org.eclipse.app4mc.transformation.util;version="1.1.0"
Automatic-Module-Name: org.eclipse.app4mc.transformation
-Import-Package: org.osgi.framework;version="1.9.0",
+Import-Package: com.google.inject;version="1.3.0",
+ com.google.inject.binder;version="1.3.0",
+ com.google.inject.name;version="1.3.0",
+ org.eclipse.app4mc.amalthea.model;version="1.1.0",
+ org.eclipse.app4mc.amalthea.model.io;version="1.1.0",
+ org.eclipse.app4mc.util.sessionlog;version="1.1.0",
+ org.osgi.framework;version="1.9.0",
org.osgi.service.cm;version="1.6.0",
org.osgi.service.component;version="1.4.0",
org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional,
- org.slf4j;version="1.7.2"
+ org.osgi.service.event;version="1.4.0",
+ org.osgi.service.log;version="1.4.0",
+ org.osgi.util.tracker;version="1.5.2"
Require-Capability: osgi.extender;
filter:="(&(osgi.extender=osgi.component)(version>=1.3)(!(version>=2.0)))",
osgi.implementation;
diff --git a/framework/plugins/org.eclipse.app4mc.transformation/OSGI-INF/org.eclipse.app4mc.transformation.TransformationProcessor.xml b/framework/plugins/org.eclipse.app4mc.transformation/OSGI-INF/org.eclipse.app4mc.transformation.TransformationProcessor.xml
index 4273e3a..9d23422 100644
--- a/framework/plugins/org.eclipse.app4mc.transformation/OSGI-INF/org.eclipse.app4mc.transformation.TransformationProcessor.xml
+++ b/framework/plugins/org.eclipse.app4mc.transformation/OSGI-INF/org.eclipse.app4mc.transformation.TransformationProcessor.xml
@@ -1,8 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" name="org.eclipse.app4mc.transformation.TransformationProcessor">
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" deactivate="deactivate" name="org.eclipse.app4mc.transformation.TransformationProcessor">
<service>
<provide interface="org.eclipse.app4mc.transformation.TransformationProcessor"/>
</service>
+ <reference bind="setLogger" cardinality="0..1" interface="org.osgi.service.log.LoggerFactory" name="Logger" policy="dynamic" unbind="unsetLogger"/>
<reference cardinality="1..1" field="configAdmin" interface="org.osgi.service.cm.ConfigurationAdmin" name="configAdmin"/>
+ <reference cardinality="1..1" field="loggerFactory" interface="org.osgi.service.component.ComponentFactory" name="loggerFactory" target="(component.factory=org.eclipse.app4mc.amalthea.sessionlog.factory)"/>
<implementation class="org.eclipse.app4mc.transformation.TransformationProcessor"/>
</scr:component>
\ No newline at end of file
diff --git a/framework/plugins/org.eclipse.app4mc.transformation/OSGI-INF/org.eclipse.app4mc.transformation.registry.TransformerRegistry.xml b/framework/plugins/org.eclipse.app4mc.transformation/OSGI-INF/org.eclipse.app4mc.transformation.registry.TransformerRegistry.xml
index 02a6d75..01ca114 100644
--- a/framework/plugins/org.eclipse.app4mc.transformation/OSGI-INF/org.eclipse.app4mc.transformation.registry.TransformerRegistry.xml
+++ b/framework/plugins/org.eclipse.app4mc.transformation/OSGI-INF/org.eclipse.app4mc.transformation.registry.TransformerRegistry.xml
@@ -1,9 +1,12 @@
<?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" configuration-pid="TRANSFORMATION_SESSION_CONFIG" configuration-policy="require" deactivate="deactivate" name="org.eclipse.app4mc.transformation.registry.TransformerRegistry">
- <reference bind="setM2mConfig" cardinality="0..n" interface="org.eclipse.app4mc.transformation.executiontype.IModelToModelConfig" name="M2mConfig" policy="dynamic" unbind="unsetM2mConfig"/>
- <reference bind="setM2mTransformer" cardinality="0..n" interface="org.eclipse.app4mc.transformation.transformers.Model2ModelRootTransformer" name="M2mTransformer" policy="dynamic" unbind="unsetM2mTransformer"/>
- <reference bind="setM2tConfig" cardinality="0..n" interface="org.eclipse.app4mc.transformation.executiontype.IModelToTextConfig" name="M2tConfig" policy="dynamic" unbind="unsetM2tConfig"/>
- <reference bind="setM2tTransformer" cardinality="0..n" interface="org.eclipse.app4mc.transformation.transformers.Model2TextRootTransformer" name="M2tTransformer" policy="dynamic" unbind="unsetM2tTransformer"/>
- <reference cardinality="1..1" field="configAdmin" interface="org.osgi.service.cm.ConfigurationAdmin" name="configAdmin"/>
+<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.3.0" activate="activate" configuration-pid="TRANSFORMATION_SESSION_CONFIG" configuration-policy="require" name="org.eclipse.app4mc.transformation.registry.TransformerRegistry">
+ <service>
+ <provide interface="org.eclipse.app4mc.transformation.registry.TransformerRegistry"/>
+ </service>
+ <reference bind="setLogger" cardinality="0..1" interface="org.osgi.service.log.LoggerFactory" name="Logger" policy="dynamic" unbind="unsetLogger"/>
+ <reference cardinality="1..1" field="eventAdmin" interface="org.osgi.service.event.EventAdmin" name="eventAdmin"/>
+ <reference bind="registerM2mTransformer" cardinality="0..n" interface="org.eclipse.app4mc.transformation.transformers.Model2ModelRootTransformer" name="m2mTransformers"/>
+ <reference bind="registerM2tTransformer" cardinality="0..n" interface="org.eclipse.app4mc.transformation.transformers.Model2TextRootTransformer" name="m2tTransformers"/>
+ <reference bind="setSessionLogger" interface="org.eclipse.app4mc.util.sessionlog.SessionLogger" name="sessionLogger"/>
<implementation class="org.eclipse.app4mc.transformation.registry.TransformerRegistry"/>
</scr:component>
\ No newline at end of file
diff --git a/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/TransformationConstants.java b/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/TransformationConstants.java
index 9b25281..6e7bff4 100644
--- a/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/TransformationConstants.java
+++ b/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/TransformationConstants.java
@@ -56,6 +56,12 @@
public static final String M2T_OUTPUT_FOLDER = "m2t_output_folder";
/**
+ * Property key to specify the transformation result location. Derived from the
+ * m2m/m2t output folder and the transformation key.
+ */
+ public static final String TRANSFORMATION_OUTPUT_FOLDER = "transformation_output_folder";
+
+ /**
* Property key to specify the session log file location.
*/
public static final String LOG_FILE = "log_file";
@@ -69,4 +75,9 @@
* Property key to specify the m2t transformers that should be executed.
*/
public static final String M2T_TRANSFORMERS = "m2tTransformers";
+
+ /**
+ * The event topic for the event that is sent when a transformation is finished.
+ */
+ public static final String TRANSFORMATION_DONE_TOPIC = "org/eclipse/app4mc/transformation/DONE";
}
diff --git a/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/TransformationDefinition.java b/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/TransformationDefinition.java
index 007bc83..cafaa7c 100644
--- a/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/TransformationDefinition.java
+++ b/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/TransformationDefinition.java
@@ -13,6 +13,9 @@
package org.eclipse.app4mc.transformation;
+import java.util.Collections;
+import java.util.List;
+
/**
* A TransformationDefinition is used to promote information on the provided
* transformation implementation to the runtime.
@@ -45,4 +48,24 @@
*/
String getM2TKey();
+
+ default List<TransformationParameter> getTransformationParameter() {
+ return Collections.emptyList();
+ }
+
+
+ public static class TransformationParameter {
+
+ public final String groupName;
+ public final String parameterKey;
+ public final String parameterName;
+ public final Class<?> parameterType;
+
+ public TransformationParameter(String groupName, String parameterKey, String parameterName, Class<?> parameterType) {
+ this.groupName = groupName;
+ this.parameterKey = parameterKey;
+ this.parameterName = parameterName;
+ this.parameterType = parameterType;
+ }
+ }
}
diff --git a/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/TransformationProcessor.java b/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/TransformationProcessor.java
index de5ffcd..5750312 100644
--- a/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/TransformationProcessor.java
+++ b/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/TransformationProcessor.java
@@ -19,16 +19,32 @@
import java.io.IOException;
import java.nio.file.Path;
import java.nio.file.Paths;
+import java.util.HashMap;
import java.util.Hashtable;
import java.util.Properties;
+import org.eclipse.app4mc.transformation.registry.TransformerRegistry;
+import org.eclipse.app4mc.util.sessionlog.SessionLogger;
+import org.osgi.framework.BundleContext;
+import org.osgi.framework.Constants;
+import org.osgi.framework.Filter;
import org.osgi.framework.InvalidSyntaxException;
+import org.osgi.framework.ServiceRegistration;
import org.osgi.service.cm.Configuration;
import org.osgi.service.cm.ConfigurationAdmin;
+import org.osgi.service.component.ComponentFactory;
+import org.osgi.service.component.ComponentInstance;
+import org.osgi.service.component.annotations.Activate;
import org.osgi.service.component.annotations.Component;
+import org.osgi.service.component.annotations.Deactivate;
import org.osgi.service.component.annotations.Reference;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
+import org.osgi.service.component.annotations.ReferenceCardinality;
+import org.osgi.service.component.annotations.ReferencePolicy;
+import org.osgi.service.event.EventConstants;
+import org.osgi.service.event.EventHandler;
+import org.osgi.service.log.Logger;
+import org.osgi.service.log.LoggerFactory;
+import org.osgi.util.tracker.ServiceTracker;
/**
* OSGi service component to start a transformation in an OSGi context. Uses the
@@ -37,11 +53,57 @@
@Component(service = TransformationProcessor.class)
public class TransformationProcessor {
- private static final Logger LOG = LoggerFactory.getLogger(TransformationProcessor.class);
+ LoggerFactory factory;
+ Logger logger;
+
+ @Reference(cardinality = ReferenceCardinality.OPTIONAL, policy = ReferencePolicy.DYNAMIC)
+ void setLogger(LoggerFactory factory) {
+ this.factory = factory;
+ this.logger = factory.getLogger(getClass());
+ }
+
+ void unsetLogger(LoggerFactory loggerFactory) {
+ if (this.factory == loggerFactory) {
+ this.factory = null;
+ this.logger = null;
+ }
+ }
@Reference
ConfigurationAdmin configAdmin;
+ @Reference(target = "(component.factory=" + "org.eclipse.app4mc.amalthea.sessionlog.factory" + ")")
+ ComponentFactory<SessionLogger> loggerFactory;
+
+ ServiceRegistration<?> eventHandlerRegistration;
+
+ HashMap<String, ComponentInstance<SessionLogger>> sessionLoggerMap = new HashMap<>();
+
+ BundleContext context;
+
+ @Activate
+ void activate(BundleContext context) {
+ this.context = context;
+
+ Hashtable<String, Object> properties = new Hashtable<>();
+ properties.put(EventConstants.EVENT_TOPIC, TransformationConstants.TRANSFORMATION_DONE_TOPIC);
+ // register the EventHandler service
+ eventHandlerRegistration = context.registerService(
+ EventHandler.class.getName(),
+ (EventHandler) event -> {
+ String sessionName = event.containsProperty(ServiceConstants.SESSION_ID) ? event.getProperty(ServiceConstants.SESSION_ID).toString() : null;
+ cleanup(sessionName);
+ },
+ properties);
+ }
+
+ @Deactivate
+ void deactivate() {
+ if (eventHandlerRegistration != null) {
+ eventHandlerRegistration.unregister();
+ }
+ }
+
/**
* Start the transformation with the configuration provided by the given
* {@link File}.
@@ -68,7 +130,7 @@
startTransformation(inputParameters, false);
} catch (IOException e) {
- LOG.error("Error in extracting properties from provided input file", e);
+ logger.error("Error in extracting properties from provided input file", e);
}
}
@@ -139,31 +201,135 @@
dictionaryForConfiguration.put(ServiceConstants.SESSION_ID, name);
}
- try {
- // ensure that a session is not triggered twice
- String filter = "(&(service.pid=" + ServiceConstants.SESSION_CONFIGURATION_PID + "~" + name + ")"
- + "(service.factoryPid=" + ServiceConstants.SESSION_CONFIGURATION_PID + "))";
- Configuration[] existing = this.configAdmin.listConfigurations(filter);
- if (existing == null || existing.length == 0) {
- // create the configuration to trigger the activation of transformation components and the transformation
- // this way we start a new session to get new transformer instances
- Configuration configuration = this.configAdmin
- .getFactoryConfiguration(ServiceConstants.SESSION_CONFIGURATION_PID, name, "?");
- configuration.update(dictionaryForConfiguration);
+ // ensure that a session is not triggered twice
+ String servicePid = ServiceConstants.SESSION_CONFIGURATION_PID + "~" + name;
+ String pidFilter = "(service.pid=" + servicePid + ")";
+ String factoryPidFilter = "(service.factoryPid=" + ServiceConstants.SESSION_CONFIGURATION_PID + ")";
+ String filter = "(&" + pidFilter + factoryPidFilter + ")";
+ Configuration[] existing = this.configAdmin.listConfigurations(filter);
+ if (existing == null || existing.length == 0) {
+
+ // first we need to create a SessionLogger so all referring services can be satisfied
+ Hashtable<String, Object> sessionLoggerDictionary = new Hashtable<>();
+ sessionLoggerDictionary.put(ServiceConstants.SESSION_ID, name);
+ ComponentInstance<SessionLogger> sessionLoggerInstance = this.loggerFactory.newInstance(sessionLoggerDictionary);
+ this.sessionLoggerMap.put(name, sessionLoggerInstance);
+ SessionLogger sessionLogger = sessionLoggerInstance.getInstance();
+
+ // after the transformers are created via session configuration we create the TransformerRegistry to start the transformation session
+ // specify target properties to consume only the created instances for the created session
+ String m2mTransformersKey = (String) params.get(TransformationConstants.M2M_TRANSFORMERS);
+ String[] m2mKeys = m2mTransformersKey != null ? m2mTransformersKey.split(",") : new String[0];
+ if (m2mKeys.length > 0) {
+ String m2mFilter = "";
+ for (String key : m2mKeys) {
+ m2mFilter += ("(" + TransformationConstants.M2M_TRANSFORMERS + "=" + key + ")");
+ }
+
+ if (m2mKeys.length > 1) {
+ m2mFilter = "(|" + m2mFilter + ")";
+ }
+
+ m2mFilter = "(&" + pidFilter + m2mFilter + ")";
+ dictionaryForConfiguration.put("m2mTransformers.target", m2mFilter);
+ dictionaryForConfiguration.put("m2mTransformers.cardinality.minimum", m2mKeys.length);
}
- } catch (InvalidSyntaxException e) {
- LOG.error("Error in retrieving existing session configurations", e);
+
+ String m2tTransformersKey = (String) params.get(TransformationConstants.M2T_TRANSFORMERS);
+ String[] m2tKeys = m2tTransformersKey != null ? m2tTransformersKey.split(",") : new String[0];
+ if (m2tKeys.length > 0) {
+ String m2tFilter = "";
+ for (String key : m2tKeys) {
+ m2tFilter += ("(" + ServiceConstants.TRANSFORMATION_PROPERTY + "=" + key + ")");
+ }
+
+ if (m2tKeys.length > 1) {
+ m2tFilter = "(|" + m2tFilter + ")";
+ }
+
+ m2tFilter = "(&" + pidFilter + m2tFilter + ")";
+ dictionaryForConfiguration.put("m2tTransformers.target", m2tFilter);
+ dictionaryForConfiguration.put("m2tTransformers.cardinality.minimum", m2tKeys.length);
+ }
+
+ dictionaryForConfiguration.put("sessionLogger.target", "(" + ServiceConstants.SESSION_ID + "=" + name + ")");
+ // create the configuration to trigger the activation of transformation components and the transformation
+ // this way we start a new session to get new transformer instances
+ Configuration configuration = this.configAdmin
+ .getFactoryConfiguration(ServiceConstants.SESSION_CONFIGURATION_PID, name, "?");
+ configuration.update(dictionaryForConfiguration);
+
+ TransformerRegistry transformerRegistry = getTransformerRegistry(pidFilter);
+ if (transformerRegistry != null) {
+ transformerRegistry.startTransformation();
+ } else {
+ StringBuilder errorBuilder = new StringBuilder("Failed to create TransformerRegistry. Double check the transformer configuration.")
+ .append(System.lineSeparator())
+ .append(System.lineSeparator());
+ dictionaryForConfiguration.entrySet().stream()
+ .filter(entry -> TransformationConstants.M2M_TRANSFORMERS.equals(entry.getKey()) || TransformationConstants.M2T_TRANSFORMERS.equals(entry.getKey()))
+ .forEach(entry -> errorBuilder.append(entry.getKey()).append(" : ").append(entry.getValue()).append(System.lineSeparator()));
+ errorBuilder.append(System.lineSeparator());
+ sessionLogger.error(errorBuilder.toString());
+ sessionLogger.flush(new File((String) params.get(TransformationConstants.LOG_FILE)));
+
+ cleanup(name);
+ }
}
-
- } catch (IOException e) {
- // ignore
+
+ } catch (InvalidSyntaxException | IOException e) {
+ logger.error("Error in retrieving existing session configurations", e);
}
} else {
- LOG.error(
- "ERROR !! Unable to start transformation as required parameters are not set in input properties file");
+ logger.error("ERROR !! Unable to start transformation as required parameters are not set in input properties file");
}
}
+
+ /**
+ * Method to get the {@link TransformerRegistry} from the OSGi service context.
+ * Uses a {@link ServiceTracker} with a filter on the given session id. The
+ * tracker is used because the session instance of the TransfomerRegistry and
+ * the referenced root transformer are created when the configuration is created
+ * via ConfigAdmin. We therefore need to wait until the references can be
+ * satisfied and the instance is created.
+ *
+ * @param pidFilter The filter for the service.pid of the current session.
+ * @return The {@link TransformerRegistry} for the given filter.
+ */
+ private TransformerRegistry getTransformerRegistry(String pidFilter) {
+ try {
+ String filterString = "(&(" + Constants.OBJECTCLASS +
+ "=" + TransformerRegistry.class.getName() + ")" + pidFilter + ")";
+ Filter filter = context.createFilter(filterString);
+
+ ServiceTracker<TransformerRegistry, TransformerRegistry> st =
+ new ServiceTracker<>(context, filter, null);
+ st.open();
+ return st.waitForService(1000);
+ } catch (InterruptedException | InvalidSyntaxException e) {
+ logger.error("Failed to get TransformerRegistry", e);
+ Thread.currentThread().interrupt();
+ }
+ return null;
+ }
+ private void cleanup(String sessionName) {
+ if (sessionLoggerMap.containsKey(sessionName)) {
+ // dispose the SessionLogger stored for the session id
+ sessionLoggerMap.get(sessionName).dispose();
+ }
+
+ // once we are done, we delete the configuration to clean up
+ try {
+ Configuration configuration = configAdmin.getFactoryConfiguration(ServiceConstants.SESSION_CONFIGURATION_PID, sessionName, "?");
+ configuration.delete();
+ } catch (IOException e) {
+ if (logger != null) {
+ logger.error("Failed to delete the session configuration", e);
+ }
+ }
+ }
+
private Properties getInputParameter(File propertiesFile, String workingDirectory) throws IOException {
Properties properties = new Properties();
@@ -223,7 +389,7 @@
throw new IllegalArgumentException("'input_models_folder' parameter needs to be set");
}
- if (inputFile == null || !inputFile.exists()) {
+ if (!inputFile.exists()) {
throw new IllegalArgumentException(
"'input_models_folder' doesn't seem to exist. Please check configuration of 'input_models_folder' and optional 'workingDirectory'.");
}
diff --git a/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/executiontype/IModelToModelConfig.java b/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/executiontype/IModelToModelConfig.java
deleted file mode 100644
index 350c0b3..0000000
--- a/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/executiontype/IModelToModelConfig.java
+++ /dev/null
@@ -1,25 +0,0 @@
-/*******************************************************************************
- *
- * Copyright (c) 2018, 2020 Robert Bosch GmbH.
- *
- * This program and the accompanying materials are made
- * available under the terms of the Eclipse Public License 2.0
- * which is available at https://www.eclipse.org/legal/epl-2.0/
- *
- * SPDX-License-Identifier: EPL-2.0
- *
- * Contributors:
- * Robert Bosch GmbH - initial API and implementation
- *******************************************************************************/
-
-package org.eclipse.app4mc.transformation.executiontype;
-
-import org.eclipse.emf.ecore.resource.ResourceSet;
-
-public interface IModelToModelConfig {
-
- public ResourceSet getInputResourceSet();
-
- public ResourceSet getOuputResourceSet();
-
-}
diff --git a/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/executiontype/IModelToTextConfig.java b/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/executiontype/IModelToTextConfig.java
deleted file mode 100644
index faedb88..0000000
--- a/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/executiontype/IModelToTextConfig.java
+++ /dev/null
@@ -1,23 +0,0 @@
-/*******************************************************************************
- *
- * Copyright (c) 2018, 2020 Robert Bosch GmbH.
- *
- * This program and the accompanying materials are made
- * available under the terms of the Eclipse Public License 2.0
- * which is available at https://www.eclipse.org/legal/epl-2.0/
- *
- * SPDX-License-Identifier: EPL-2.0
- *
- * Contributors:
- * Robert Bosch GmbH - initial API and implementation
- *******************************************************************************/
-
-package org.eclipse.app4mc.transformation.executiontype;
-
-import org.eclipse.emf.ecore.resource.ResourceSet;
-
-public interface IModelToTextConfig {
-
- public ResourceSet getInputResourceSet();
-
-}
diff --git a/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/registry/TransformerRegistry.java b/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/registry/TransformerRegistry.java
index 1b7f0e8..f54ce75 100644
--- a/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/registry/TransformerRegistry.java
+++ b/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/registry/TransformerRegistry.java
@@ -14,36 +14,29 @@
package org.eclipse.app4mc.transformation.registry;
-import java.io.IOException;
-import java.util.Arrays;
+import java.io.File;
+import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
-import java.util.Map.Entry;
-import java.util.concurrent.Executors;
-import java.util.concurrent.ScheduledExecutorService;
-import java.util.concurrent.ScheduledFuture;
-import java.util.concurrent.TimeUnit;
import java.util.concurrent.atomic.AtomicBoolean;
-import java.util.stream.Collectors;
import org.eclipse.app4mc.transformation.ServiceConstants;
import org.eclipse.app4mc.transformation.TransformationConstants;
-import org.eclipse.app4mc.transformation.executiontype.IModelToModelConfig;
-import org.eclipse.app4mc.transformation.executiontype.IModelToTextConfig;
import org.eclipse.app4mc.transformation.transformers.Model2ModelRootTransformer;
import org.eclipse.app4mc.transformation.transformers.Model2TextRootTransformer;
-import org.osgi.service.cm.Configuration;
-import org.osgi.service.cm.ConfigurationAdmin;
+import org.eclipse.app4mc.util.sessionlog.SessionLogWriter;
+import org.eclipse.app4mc.util.sessionlog.SessionLogger;
import org.osgi.service.component.annotations.Activate;
import org.osgi.service.component.annotations.Component;
import org.osgi.service.component.annotations.ConfigurationPolicy;
-import org.osgi.service.component.annotations.Deactivate;
import org.osgi.service.component.annotations.Reference;
import org.osgi.service.component.annotations.ReferenceCardinality;
import org.osgi.service.component.annotations.ReferencePolicy;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
+import org.osgi.service.event.Event;
+import org.osgi.service.event.EventAdmin;
+import org.osgi.service.log.Logger;
+import org.osgi.service.log.LoggerFactory;
/**
* Configured OSGi service component to consume root transformer and start the
@@ -56,360 +49,129 @@
*/
@Component(
configurationPid = ServiceConstants.SESSION_CONFIGURATION_PID,
- configurationPolicy = ConfigurationPolicy.REQUIRE)
+ configurationPolicy = ConfigurationPolicy.REQUIRE,
+ service=TransformerRegistry.class)
public class TransformerRegistry {
- private static final String LINE_SEPARATOR = System.getProperty("line.separator");
-
- private static final Logger LOG = LoggerFactory.getLogger(TransformerRegistry.class);
-
private String logFilePath;
private AtomicBoolean transformationStarted = new AtomicBoolean(false);
- ScheduledExecutorService scheduledExecutorService;
- ScheduledFuture<?> killCheck;
+ LoggerFactory factory;
+ Logger osgiLogger;
@Reference
- ConfigurationAdmin configAdmin;
+ EventAdmin eventAdmin;
+ SessionLogger logger;
+
String sessionName;
- private String[] m2mKeys;
- private String[] m2tKeys;
+ private List<Model2ModelRootTransformer> m2mTransformers = new ArrayList<>();
+ private List<Model2TextRootTransformer> m2tTransformers = new ArrayList<>();
- private HashMap<String, Model2ModelRootTransformer> m2mTransformers = new HashMap<>();
- private HashMap<String, IModelToModelConfig> m2mConfigs = new HashMap<>();
-
- private HashMap<String, Model2TextRootTransformer> m2tTransformers = new HashMap<>();
- private HashMap<String, IModelToTextConfig> m2tConfigs = new HashMap<>();
-
@Activate
void activate(Map<String, ?> properties) {
-
this.logFilePath = (String) properties.get(TransformationConstants.LOG_FILE);
this.sessionName = (String) properties.get(ServiceConstants.SESSION_ID);
-
- String m2mTransformersKey = (String) properties.get("m2mTransformers");
- this.m2mKeys = m2mTransformersKey != null ? m2mTransformersKey.split(",") : new String[0];
-
- LOG.debug("m2m transformer to execute: {}", (Object[]) this.m2mKeys);
-
- String m2tTransformersKey = (String) properties.get(TransformationConstants.M2T_TRANSFORMERS);
- this.m2tKeys = m2tTransformersKey != null ? m2tTransformersKey.split(",") : new String[0];
-
- LOG.debug("m2t transformer to execute: {}", (Object[]) this.m2tKeys);
-
- this.scheduledExecutorService = Executors.newScheduledThreadPool(1);
- this.killCheck = this.scheduledExecutorService.schedule(
- () -> {
- // if after 10 seconds we check if all required transformers are available
- // if not we log an error and kill the session
-
- for (String key : this.m2mKeys) {
- if (!this.m2mTransformers.containsKey(key)) {
- LOG.error("M2M transformer for key '{}' is not available in the runtime", key);
- }
- }
-
- for (String key : this.m2mKeys) {
- if (!this.m2mConfigs.containsKey(key)) {
- LOG.error("M2M configuration for key '{}' is not available in the runtime", key);
- }
- }
-
- for (String key : this.m2tKeys) {
- if (!this.m2tTransformers.containsKey(key)) {
- LOG.error("M2T transformer for key '{}' is not available in the runtime", key);
- }
- }
-
- // check that for all configured keys there is a configuration available
- for (String key : this.m2tKeys) {
- if (!this.m2tConfigs.containsKey(key)) {
- LOG.error("M2T configuration for key '{}' is not available in the runtime", key);
- }
- }
-
- LOG.error("Transformation configuration invalid! Stopping the process!");
-
- try {
- Configuration configuration =
- this.configAdmin.getFactoryConfiguration(ServiceConstants.SESSION_CONFIGURATION_PID, this.sessionName, "?");
- configuration.delete();
- } catch (IOException e) {
- LOG.error("Failed to delete the session configuration", e);
- }
- },
- 10, TimeUnit.SECONDS);
- // if the transformers were already set prior to the activation, we need to start
- checkAllReferencesSet();
}
- @Deactivate
- void deactivate() {
- this.scheduledExecutorService.shutdownNow();
+ @Reference(cardinality = ReferenceCardinality.OPTIONAL, policy = ReferencePolicy.DYNAMIC)
+ void setLogger(LoggerFactory factory) {
+ this.factory = factory;
+ this.osgiLogger = factory.getLogger(getClass());
}
- // Model 2 Model
-
- @Reference(
- cardinality = ReferenceCardinality.MULTIPLE,
- policy = ReferencePolicy.DYNAMIC)
- void setM2mTransformer(Model2ModelRootTransformer transformer, Map<String, ?> properties) {
- String transformationKey = (String) properties.get(ServiceConstants.TRANSFORMATION_PROPERTY);
- if (transformationKey != null) {
- this.m2mTransformers.put(transformationKey, transformer);
-
- LOG.debug("m2m transformer registered for key {}", transformationKey);
-
- checkAllReferencesSet();
+ void unsetLogger(LoggerFactory loggerFactory) {
+ if (this.factory == loggerFactory) {
+ this.factory = null;
+ this.osgiLogger = null;
}
}
- void unsetM2mTransformer(Model2ModelRootTransformer transformer, Map<String, ?> properties) {
- String transformationKey = (String) properties.get(ServiceConstants.TRANSFORMATION_PROPERTY);
- if (transformationKey != null) {
- this.m2mTransformers.remove(transformationKey);
- }
+ /**
+ * Set the {@link SessionLogger} that should be used to write the session log of
+ * the transformation. To write the log, the {@link SessionLogger} needs to have
+ * {@link SessionLogWriter} set.
+ *
+ * @param logger The {@link SessionLogger} that should be used to write the
+ * session log of the transformation.
+ */
+ @Reference(name = "sessionLogger")
+ public void setSessionLogger(SessionLogger logger) {
+ this.logger = logger;
}
- @Reference(
- cardinality = ReferenceCardinality.MULTIPLE,
- policy = ReferencePolicy.DYNAMIC)
- void setM2mConfig(IModelToModelConfig config, Map<String, ?> properties) {
- String transformationKey = (String) properties.get(ServiceConstants.TRANSFORMATION_PROPERTY);
- if (transformationKey != null) {
- this.m2mConfigs.put(transformationKey, config);
-
- LOG.debug("m2m config registered for key {}", transformationKey);
-
- checkAllReferencesSet();
- }
- }
-
- void unsetM2mConfig(IModelToModelConfig config, Map<String, ?> properties) {
- String transformationKey = (String) properties.get(ServiceConstants.TRANSFORMATION_PROPERTY);
- if (transformationKey != null) {
- this.m2mConfigs.remove(transformationKey);
- }
- }
-
- public List<Model2ModelRootTransformer> getModelToModelTransformer(String... transformation){
- List<String> keys = Arrays.asList(transformation);
- return this.m2mTransformers.entrySet().stream()
- .filter(entry -> keys.contains(entry.getKey()))
- .map(Entry<String, Model2ModelRootTransformer>::getValue)
- .collect(Collectors.toList());
- }
-
- public List<IModelToModelConfig> getModelToModelConfig(String... transformation) {
- List<String> keys = Arrays.asList(transformation);
- return this.m2mConfigs.entrySet().stream()
- .filter(entry -> keys.contains(entry.getKey()))
- .map(Entry<String, IModelToModelConfig>::getValue)
- .collect(Collectors.toList());
- }
-
// Model 2 Text
- @Reference(
- cardinality = ReferenceCardinality.MULTIPLE,
- policy = ReferencePolicy.DYNAMIC)
- void setM2tTransformer(Model2TextRootTransformer transformer, Map<String, ?> properties) {
- String transformationKey = (String) properties.get(ServiceConstants.TRANSFORMATION_PROPERTY);
- if (transformationKey != null) {
- m2tTransformers.put(transformationKey, transformer);
-
- LOG.debug("m2t transformer registered for key {}", transformationKey);
+ @Reference(name = "m2mTransformers", cardinality = ReferenceCardinality.MULTIPLE)
+ public void registerM2mTransformer(Model2ModelRootTransformer transformer) {
+ this.m2mTransformers.add(transformer);
+ }
+
+ // Model 2 Text
- checkAllReferencesSet();
- }
+ @Reference(name = "m2tTransformers", cardinality = ReferenceCardinality.MULTIPLE)
+ public void registerM2tTransformer(Model2TextRootTransformer transformer) {
+ m2tTransformers.add(transformer);
}
- void unsetM2tTransformer(Model2TextRootTransformer transformer, Map<String, ?> properties) {
- String transformationKey = (String) properties.get(ServiceConstants.TRANSFORMATION_PROPERTY);
- if (transformationKey != null) {
- m2tTransformers.remove(transformationKey);
+ /**
+ * Start the transformation within an OSGi context. The call of this method
+ * assumes that the {@link TransformerRegistry} instance is configured via OSGi
+ * component configuration.
+ */
+ public void startTransformation() {
+ if (this.transformationStarted.compareAndSet(false, true)) {
+ start();
}
}
- @Reference(
- cardinality = ReferenceCardinality.MULTIPLE,
- policy = ReferencePolicy.DYNAMIC)
- void setM2tConfig(IModelToTextConfig config, Map<String, ?> properties) {
- String transformationKey = (String) properties.get(ServiceConstants.TRANSFORMATION_PROPERTY);
- if (transformationKey != null) {
- m2tConfigs.put(transformationKey, config);
-
- LOG.debug("m2t config registered for key {}", transformationKey);
-
- checkAllReferencesSet();
- }
- }
-
- void unsetM2tConfig(IModelToTextConfig config, Map<String, ?> properties) {
- String transformationKey = (String) properties.get(ServiceConstants.TRANSFORMATION_PROPERTY);
- if (transformationKey != null) {
- m2tConfigs.remove(transformationKey);
- }
- }
-
- public List<Model2TextRootTransformer> getModelToTextTransformer(String... transformation) {
- List<String> keys = Arrays.asList(transformation);
- return m2tTransformers.entrySet().stream()
- .filter(entry -> keys.contains(entry.getKey()))
- .map(Entry<String, Model2TextRootTransformer>::getValue)
- .collect(Collectors.toList());
- }
-
- public List<IModelToTextConfig> getModelToTextConfig(String... transformation) {
- List<String> keys = Arrays.asList(transformation);
- return m2tConfigs.entrySet().stream()
- .filter(entry -> keys.contains(entry.getKey()))
- .map(Entry<String, IModelToTextConfig>::getValue)
- .collect(Collectors.toList());
- }
-
- private void checkAllReferencesSet() {
- if (this.configAdmin == null || this.m2mKeys == null || this.m2tKeys == null) {
- // this component is not activated yet, so no action to perform
- return;
- }
-
- // check that for all configured keys there is a root transformer available
- boolean allM2MTransformersSet = true;
- for (String key : this.m2mKeys) {
- if (!this.m2mTransformers.containsKey(key)) {
- allM2MTransformersSet = false;
- break;
- }
- }
-
- // check that for all configured keys there is a configuration available
- boolean allM2MConfigsSet = true;
- for (String key : this.m2mKeys) {
- if (!this.m2mConfigs.containsKey(key)) {
- allM2MConfigsSet = false;
- break;
- }
- }
-
- // check that for all configured keys there is a root transformer available
- boolean allM2TTransformersSet = true;
- for (String key : this.m2tKeys) {
- if (!this.m2tTransformers.containsKey(key)) {
- allM2TTransformersSet = false;
- break;
- }
- }
-
- // check that for all configured keys there is a configuration available
- boolean allM2TConfigsSet = true;
- for (String key : this.m2tKeys) {
- if (!this.m2tConfigs.containsKey(key)) {
- allM2TConfigsSet = false;
- break;
- }
- }
-
- if (allM2MTransformersSet && allM2MConfigsSet
- && allM2TTransformersSet && allM2TConfigsSet
- && this.transformationStarted.compareAndSet(false, true)) {
- // only start the transformation once if all required transformations are set
- this.killCheck.cancel(true);
- startTransformation();
- }
- }
-
- void startTransformation() {
-
+ void start() {
try {
- // activate session file logging
-
- System.setProperty("APP4MC_TRANSFORMATION_LOG_FILE", logFilePath);
-
- LOG.info("Starting Model transformation ...");
+ logger.info("Starting Model transformation ...");
// Model to Model transformation
- for (String m2mKey : this.m2mKeys) {
- LOG.info("****************** Model to Model Transformation : {} *******************************", m2mKey);
-
- List<Model2ModelRootTransformer> m2mTransformers = getModelToModelTransformer(m2mKey);
-
- List<IModelToModelConfig> m2mConfigs = getModelToModelConfig(m2mKey);
-
- if (!m2mTransformers.isEmpty() && !m2mConfigs.isEmpty()) {
-
- for (Model2ModelRootTransformer model2ModelRootTransformer : m2mTransformers) {
-
- LOG.info("** Executing M2M transformer : {}", model2ModelRootTransformer.getClass().getTypeName());
- for (IModelToModelConfig m2mConfig : m2mConfigs) {
- model2ModelRootTransformer.m2mTransformation(m2mConfig.getInputResourceSet(),
- m2mConfig.getOuputResourceSet());
- }
-
- }
- } else {
- LOG.error("Unable to execute the M2M transformation for key : {}", m2mKey);
-
- String info = "Following configuration is loaded for M2M with key : " + m2mKey
- + LINE_SEPARATOR + "Model2ModelRootTransformer objects : "
- + Arrays.toString(m2mTransformers.toArray()) + LINE_SEPARATOR
- + "IModelToModelConfig objects : " + Arrays.toString(m2mConfigs.toArray());
- LOG.info(info);
- }
+ for (Model2ModelRootTransformer model2ModelRootTransformer : m2mTransformers) {
+ logger.info("****************** Model to Model Transformation : {0} *******************************", model2ModelRootTransformer.getTransformationKey());
+
+ logger.info("** Executing M2M transformer : {0}", model2ModelRootTransformer.getClass().getTypeName());
+ model2ModelRootTransformer.setSessionLogger(logger);
+ model2ModelRootTransformer.m2mTransformation();
}
// Model to Text transformation
- for (String m2tKey : this.m2tKeys) {
- LOG.info("****************** Model to Text Transformation : {} ****************************", m2tKey);
- List<Model2TextRootTransformer> m2tTransformers = getModelToTextTransformer(m2tKey);
-
- List<IModelToTextConfig> m2tConfigs = getModelToTextConfig(m2tKey);
-
- if (!m2tTransformers.isEmpty() && !m2tConfigs.isEmpty()) {
-
- for (Model2TextRootTransformer model2TextRootTransformer : m2tTransformers) {
-
- LOG.info("** Executing M2T transformer : {}", model2TextRootTransformer.getClass().getTypeName());
-
- for (IModelToTextConfig m2tConfig : m2tConfigs) {
- model2TextRootTransformer.m2tTransformation(m2tConfig.getInputResourceSet());
- }
- }
- } else {
- LOG.error("Unable to execute the M2T transformation for key : {}", m2tKey);
-
- String info = "Following configuration is loaded for M2T with key : " + m2tKey
- + LINE_SEPARATOR + "Model2TextRootTransformer objects : "
- + Arrays.toString(m2tTransformers.toArray()) + LINE_SEPARATOR
- + "IModelToTextConfig objects : " + Arrays.toString(m2tConfigs.toArray());
- LOG.info(info);
- }
+ for (Model2TextRootTransformer model2TextRootTransformer : m2tTransformers) {
+ logger.info("****************** Model to Text Transformation : {0} ****************************", model2TextRootTransformer.getTransformationKey());
+
+ logger.info("** Executing M2T transformer : {0}", model2TextRootTransformer.getClass().getTypeName());
+ model2TextRootTransformer.setSessionLogger(logger);
+ model2TextRootTransformer.m2tTransformation();
}
- LOG.info("Transformation execution session '{}' completed.", this.sessionName);
-
} finally {
+ logger.info("Transformation execution session \"{0}\" completed.", this.sessionName);
- // we need this check in case the TransformerRegistry is called outside an OSGi context
- if (this.configAdmin != null) {
- // once we are done, we delete the configuration to clean up
- try {
- Configuration configuration = this.configAdmin.getFactoryConfiguration(ServiceConstants.SESSION_CONFIGURATION_PID, this.sessionName, "?");
- configuration.delete();
- } catch (IOException e) {
- LOG.error("Failed to delete the session configuration", e);
- }
- }
-
- // removing the system property will disable the TransformationFileAppender
- System.clearProperty("APP4MC_TRANSFORMATION_LOG_FILE");
- LOG.info("Transformation session finished");
+ stopSession();
+ }
+ }
+
+ /**
+ * Stop the current running session by deleting the configuration. Additionally
+ * the session logger is flushed and disposed.
+ */
+ private void stopSession() {
+ // we need to flush the session log first, as deleting the configuration will
+ // trigger listeners that eventually kill the process, e.g. in headless mode
+ this.logger.flush(new File(this.logFilePath));
+
+ if (this.eventAdmin != null) {
+ HashMap<String, Object> properties = new HashMap<>();
+ properties.put(ServiceConstants.SESSION_ID, this.sessionName);
+ this.eventAdmin.sendEvent(new Event("org/eclipse/app4mc/transformation/DONE", properties));
}
}
@@ -425,14 +187,11 @@
this.logFilePath = (String) properties.get(TransformationConstants.LOG_FILE);
this.sessionName = "single";
-
- String m2mTransformersKey = (String) properties.get("m2mTransformers");
- this.m2mKeys = m2mTransformersKey != null ? m2mTransformersKey.split(",") : new String[0];
-
- String m2tTransformersKey = (String) properties.get(TransformationConstants.M2T_TRANSFORMERS);
- this.m2tKeys = m2tTransformersKey != null ? m2tTransformersKey.split(",") : new String[0];
- startTransformation();
+ if (this.logger == null) {
+ this.logger = new SessionLogger();
+ }
+ start();
}
/**
@@ -440,71 +199,16 @@
* outside the OSGi context.
*
* @param logFilePath the session log file location
- * @param m2mKeys the keys of the m2m transformers that should be executed
- * @param m2tKeys the keys of the m2t transformers that should be executed
*/
- public void startTransformation(String logFilePath, String[] m2mKeys, String[] m2tKeys) {
+ public void startTransformation(String logFilePath) {
this.logFilePath = logFilePath;
this.sessionName = "single";
- this.m2mKeys = m2mKeys != null ? m2mKeys : new String[0];
-
- this.m2tKeys = m2tKeys != null ? m2tKeys : new String[0];
-
- startTransformation();
- }
-
- // Model 2 Text
-
- public void addM2mTransformer(String transformationKey, Model2ModelRootTransformer transformer) {
- if (transformationKey == null || transformer == null) {
- throw new IllegalArgumentException("key and transformer can not be null");
+ if (this.logger == null) {
+ this.logger = new SessionLogger();
}
-
- this.m2mTransformers.put(transformationKey, transformer);
- }
-
- public void removeM2mTransformer(String transformationKey) {
- this.m2mTransformers.remove(transformationKey);
- }
-
- public void addM2mConfig(String transformationKey, IModelToModelConfig config) {
- if (transformationKey == null || config == null) {
- throw new IllegalArgumentException("key and config can not be null");
- }
-
- this.m2mConfigs.put(transformationKey, config);
- }
-
- public void removeM2mConfig(String transformationKey) {
- this.m2mConfigs.remove(transformationKey);
- }
-
- // Model 2 Text
-
- public void addM2tTransformer(String transformationKey, Model2TextRootTransformer transformer) {
- if (transformationKey == null || transformer == null) {
- throw new IllegalArgumentException("key and transformer can not be null");
- }
-
- m2tTransformers.put(transformationKey, transformer);
- }
-
- public void removeM2tTransformer(String transformationKey) {
- m2tTransformers.remove(transformationKey);
- }
-
- public void addM2tConfig(String transformationKey, IModelToTextConfig config) {
- if (transformationKey == null || config == null) {
- throw new IllegalArgumentException("key and config can not be null");
- }
-
- m2tConfigs.put(transformationKey, config);
- }
-
- public void removeM2tConfig(String transformationKey) {
- m2tConfigs.remove(transformationKey);
+ start();
}
}
diff --git a/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/transformers/IRootTransformer.java b/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/transformers/IRootTransformer.java
index c5eb3b7..76de9d1 100644
--- a/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/transformers/IRootTransformer.java
+++ b/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/transformers/IRootTransformer.java
@@ -1,6 +1,6 @@
/*******************************************************************************
*
- * Copyright (c) 2018, 2020 Robert Bosch GmbH.
+ * Copyright (c) 2018, 2021 Robert Bosch GmbH.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
@@ -14,6 +14,32 @@
package org.eclipse.app4mc.transformation.transformers;
+import org.eclipse.app4mc.amalthea.model.AmaltheaFactory;
+import org.eclipse.app4mc.amalthea.model.io.AmaltheaLoader;
+import org.eclipse.app4mc.util.sessionlog.SessionLogger;
+import org.eclipse.emf.ecore.resource.ResourceSet;
+
public interface IRootTransformer {
+ default ResourceSet getInputResourceSet(String folderPath, SessionLogger logger) {
+
+ if (folderPath != null) {
+
+ ResourceSet resourceSet = AmaltheaLoader.loadFromDirectoryNamed(folderPath);
+
+ if (resourceSet.getResources().stream().noneMatch(r -> !r.getContents().isEmpty())) {
+ logger.error(
+ "No Amalthea model files are loaded. Verify if the model version is : {0}",
+ AmaltheaFactory.eINSTANCE.createAmalthea().getVersion());
+ }
+
+ return resourceSet;
+ } else {
+ logger.error("Input_models_folder parameter not set",
+ new NullPointerException("input_models_folder property not set"));
+ }
+
+ return null;
+ }
+
}
diff --git a/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/transformers/Model2ModelRootTransformer.java b/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/transformers/Model2ModelRootTransformer.java
index 73d060a..4b34ebb 100644
--- a/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/transformers/Model2ModelRootTransformer.java
+++ b/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/transformers/Model2ModelRootTransformer.java
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2018-2020 Robert Bosch GmbH.
+ * Copyright (c) 2018-2021 Robert Bosch GmbH.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
@@ -13,10 +13,49 @@
package org.eclipse.app4mc.transformation.transformers;
+import java.nio.file.Paths;
+import java.util.Map;
+
+import org.eclipse.app4mc.transformation.ServiceConstants;
+import org.eclipse.app4mc.transformation.TransformationConstants;
+import org.eclipse.app4mc.transformation.util.PropertyUtil;
+import org.eclipse.app4mc.util.sessionlog.SessionLogger;
import org.eclipse.emf.ecore.resource.ResourceSet;
public abstract class Model2ModelRootTransformer implements IRootTransformer {
- public abstract void m2mTransformation(final ResourceSet inputResourceSet, final ResourceSet outputResourceSet);
+ protected SessionLogger logger;
+
+ private String inputFolder;
+ private String outputFolder;
+ private String transformationKey;
+
+ protected void activate(Map<String, ?> properties) {
+ this.inputFolder = PropertyUtil.getProperty(TransformationConstants.INPUT_MODELS_FOLDER, properties);
+ this.transformationKey = PropertyUtil.getProperty(ServiceConstants.TRANSFORMATION_PROPERTY, properties);
+
+ String m2mOutputFolder = PropertyUtil.getProperty(TransformationConstants.M2M_OUTPUT_FOLDER, properties);
+ this.outputFolder = Paths.get(m2mOutputFolder, transformationKey).toString();
+ }
+
+ public String getInputFolder() {
+ return inputFolder;
+ }
+
+ public String getOutputFolder() {
+ return outputFolder;
+ }
+
+ public String getTransformationKey() {
+ return transformationKey;
+ }
+
+ public void setSessionLogger(SessionLogger logger) {
+ this.logger = logger;
+ }
+
+ public abstract void m2mTransformation();
+
+ public abstract ResourceSet getOutputResourceSet();
}
diff --git a/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/transformers/Model2TextRootTransformer.java b/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/transformers/Model2TextRootTransformer.java
index cc9f4ad..7b08edc 100644
--- a/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/transformers/Model2TextRootTransformer.java
+++ b/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/transformers/Model2TextRootTransformer.java
@@ -1,5 +1,5 @@
/**
- * Copyright (c) 2018-2020 Robert Bosch GmbH.
+ * Copyright (c) 2018-2021 Robert Bosch GmbH.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
@@ -13,10 +13,46 @@
package org.eclipse.app4mc.transformation.transformers;
-import org.eclipse.emf.ecore.resource.ResourceSet;
+import java.nio.file.Paths;
+import java.util.Map;
+
+import org.eclipse.app4mc.transformation.ServiceConstants;
+import org.eclipse.app4mc.transformation.TransformationConstants;
+import org.eclipse.app4mc.transformation.util.PropertyUtil;
+import org.eclipse.app4mc.util.sessionlog.SessionLogger;
public abstract class Model2TextRootTransformer implements IRootTransformer {
- public abstract void m2tTransformation(final ResourceSet inputResourceSet);
+ protected SessionLogger logger;
+
+ private String inputFolder;
+ private String transformationKey;
+ private String outputFolder;
+
+ protected void activate(Map<String, ?> properties) {
+ this.inputFolder = PropertyUtil.getProperty(TransformationConstants.INPUT_MODELS_FOLDER, properties);
+ this.transformationKey = PropertyUtil.getProperty(ServiceConstants.TRANSFORMATION_PROPERTY, properties);
+
+ String m2tOutputFolder = PropertyUtil.getProperty(TransformationConstants.M2T_OUTPUT_FOLDER, properties);
+ this.outputFolder = Paths.get(m2tOutputFolder, transformationKey).toString();
+ }
+
+ public String getInputFolder() {
+ return inputFolder;
+ }
+
+ public String getOutputFolder() {
+ return outputFolder;
+ }
+
+ public String getTransformationKey() {
+ return transformationKey;
+ }
+
+ public void setSessionLogger(SessionLogger logger) {
+ this.logger = logger;
+ }
+
+ public abstract void m2tTransformation();
}
diff --git a/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/util/FileHelper.java b/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/util/FileHelper.java
index 2d98ef9..76542c9 100644
--- a/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/util/FileHelper.java
+++ b/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/util/FileHelper.java
@@ -1,6 +1,6 @@
/**
********************************************************************************
- * Copyright (c) 2020 Robert Bosch GmbH.
+ * Copyright (c) 2020, 2021 Robert Bosch GmbH.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
@@ -26,8 +26,7 @@
import java.util.zip.ZipEntry;
import java.util.zip.ZipOutputStream;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
+import org.eclipse.app4mc.util.sessionlog.SessionLogger;
public class FileHelper {
@@ -36,13 +35,11 @@
throw new IllegalStateException("Utility class");
}
- private static final Logger LOG = LoggerFactory.getLogger(FileHelper.class);
-
- public static void zipResult(String outputFolder) throws IOException {
- zipResult(outputFolder, Collections.emptyList());
+ public static void zipResult(String outputFolder, SessionLogger logger) throws IOException {
+ zipResult(outputFolder, Collections.emptyList(), logger);
}
- public static void zipResult(String outputFolder, List<Path> excludeDirs) throws IOException {
+ public static void zipResult(String outputFolder, List<Path> excludeDirs, SessionLogger logger) throws IOException {
Path sourceDir = Paths.get(outputFolder);
List<Path> sourceFiles;
@@ -63,21 +60,21 @@
try (ZipOutputStream zipOutputStream = new ZipOutputStream(Files.newOutputStream(zipFile))) {
for (Path path : sourceFiles) {
- addFileToArchive(sourceDir, path, zipOutputStream);
+ addFileToArchive(sourceDir, path, zipOutputStream, logger);
}
} catch (Exception e) {
- LOG.error("Failed to produce result zip archive", e);
+ logger.error("Failed to produce result zip archive", e);
}
}
- private static void addFileToArchive(Path sourceDir, Path file, ZipOutputStream zipOutputStream) {
+ private static void addFileToArchive(Path sourceDir, Path file, ZipOutputStream zipOutputStream, SessionLogger logger) {
try {
ZipEntry zipEntry = new ZipEntry(sourceDir.relativize(file).toString());
zipOutputStream.putNextEntry(zipEntry);
Files.copy(file, zipOutputStream);
zipOutputStream.closeEntry();
} catch (IOException e) {
- LOG.error("Failed to include {} to zip archive", file.getFileName(), e);
+ logger.error("Failed to include {0} to zip archive", file.getFileName(), e);
}
}
diff --git a/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/util/OutputBuffer.java b/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/util/OutputBuffer.java
index ae75a80..e831b12 100644
--- a/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/util/OutputBuffer.java
+++ b/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/util/OutputBuffer.java
@@ -15,7 +15,6 @@
package org.eclipse.app4mc.transformation.util;
-import java.util.List;
import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.File;
@@ -25,17 +24,18 @@
import java.nio.file.Path;
import java.util.Collections;
import java.util.HashMap;
+import java.util.List;
import java.util.Map.Entry;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
+import org.eclipse.app4mc.util.sessionlog.SessionLogger;
+import com.google.inject.Inject;
import com.google.inject.Singleton;
@Singleton
public class OutputBuffer {
- private static final Logger LOG = LoggerFactory.getLogger(OutputBuffer.class);
+ SessionLogger logger;
private final HashMap<String, TypedBuffer> filetypeToBufferMap = new HashMap<>();
@@ -43,6 +43,11 @@
private List<Path> excludePathsOfResult = Collections.emptyList();
+ @Inject
+ public void setSessionLogger(SessionLogger logger) {
+ this.logger = logger;
+ }
+
public void initialize(String outputFolder) {
this.outputFolder = outputFolder;
}
@@ -100,7 +105,7 @@
writer.append(newContent);
writer.flush();
} catch (IOException e) {
- LOG.error("Failed to write result file: {}", targetFile);
+ logger.error("Failed to write result file: {0}", targetFile);
}
}
}
@@ -108,9 +113,9 @@
if (createZip) {
// Create Zip archive
try {
- FileHelper.zipResult(outputFolder,excludePathsOfResult);
+ FileHelper.zipResult(outputFolder,excludePathsOfResult, logger);
} catch (Exception e) {
- LOG.error("Failed to produce result zip archive: ", e);
+ logger.error("Failed to produce result zip archive: ", e);
}
}
}
@@ -130,7 +135,7 @@
return newContent.equals(String.valueOf(fileContent));
} catch (IOException e1) {
- LOG.error("Failed to read File {}, which should be present", file.getPath());
+ logger.error("Failed to read File {0}, which should be present", file.getPath(), logger);
}
return false;
}
diff --git a/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/util/PropertyUtil.java b/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/util/PropertyUtil.java
index 9997357..9649397 100644
--- a/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/util/PropertyUtil.java
+++ b/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/util/PropertyUtil.java
@@ -32,5 +32,4 @@
}
return value.toString();
}
-
}
diff --git a/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/util/TransformationGuiceModule.java b/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/util/TransformationGuiceModule.java
new file mode 100644
index 0000000..73bf935
--- /dev/null
+++ b/framework/plugins/org.eclipse.app4mc.transformation/src/org/eclipse/app4mc/transformation/util/TransformationGuiceModule.java
@@ -0,0 +1,39 @@
+/**
+ ********************************************************************************
+ * Copyright (c) 2020-2021 Robert Bosch GmbH.
+ *
+ * This program and the accompanying materials are made
+ * available under the terms of the Eclipse Public License 2.0
+ * which is available at https://www.eclipse.org/legal/epl-2.0/
+ *
+ * SPDX-License-Identifier: EPL-2.0
+ *
+ * Contributors:
+ * Robert Bosch GmbH - initial API and implementation
+ ********************************************************************************
+ */
+package org.eclipse.app4mc.transformation.util;
+
+import org.eclipse.app4mc.util.sessionlog.SessionLogger;
+
+import com.google.inject.AbstractModule;
+
+/**
+ * Default module that should be added to the created injector by creating a
+ * child-injector. Needed to be able to get the SessionLogger instance injected
+ * via Google Guice injection.
+ */
+public class TransformationGuiceModule extends AbstractModule {
+
+ private SessionLogger logger;
+
+ public TransformationGuiceModule(SessionLogger logger) {
+ this.logger = logger;
+ }
+
+ @Override
+ protected void configure() {
+ bind(SessionLogger.class).toInstance(logger);
+ }
+
+}
diff --git a/framework/releng/org.eclipse.app4mc.transformation.p2repo/category.xml b/framework/releng/org.eclipse.app4mc.transformation.p2repo/category.xml
index cfc5dc0..d970758 100644
--- a/framework/releng/org.eclipse.app4mc.transformation.p2repo/category.xml
+++ b/framework/releng/org.eclipse.app4mc.transformation.p2repo/category.xml
@@ -3,9 +3,6 @@
<feature id="org.eclipse.app4mc.transformation.examples.feature">
<category name="org.eclipse.app4mc.transformation.p2repo"/>
</feature>
- <feature id="org.eclipse.app4mc.transformation.log4j.configuration.feature">
- <category name="org.eclipse.app4mc.transformation.p2repo"/>
- </feature>
<feature id="org.eclipse.app4mc.transformation.feature">
<category name="org.eclipse.app4mc.transformation.p2repo"/>
</feature>
diff --git a/framework/releng/org.eclipse.app4mc.transformation.target/org.eclipse.app4mc.transformation.target.target b/framework/releng/org.eclipse.app4mc.transformation.target/org.eclipse.app4mc.transformation.target.target
index 43198f6..083d6fd 100644
--- a/framework/releng/org.eclipse.app4mc.transformation.target/org.eclipse.app4mc.transformation.target.target
+++ b/framework/releng/org.eclipse.app4mc.transformation.target/org.eclipse.app4mc.transformation.target.target
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<?pde?>
<!-- generated with https://github.com/eclipse-cbi/targetplatform-dsl -->
-<target name="Model Transformation Target" sequenceNumber="1618548343">
+<target name="Model Transformation Target" sequenceNumber="1619689277">
<locations>
<location includeMode="slicer" includeAllPlatforms="true" includeSource="true" includeConfigurePhase="false" type="InstallableUnit">
<unit id="org.eclipse.sdk.ide" version="4.14.0.I20191210-0610"/>
@@ -10,12 +10,10 @@
<unit id="org.eclipse.equinox.compendium.sdk.feature.group" version="3.20.0.v20191107-1453"/>
<unit id="org.eclipse.xtext.xbase.lib.feature.group" version="2.20.0.v20191202-0910"/>
<unit id="org.apache.commons.lang" version="2.6.0.v201404270220"/>
- <unit id="org.apache.log4j" version="1.2.15.v201012070815"/>
<unit id="javax.xml" version="1.3.4.v201005080400"/>
- <unit id="org.slf4j.api" version="1.7.2.v20121108-1250"/>
- <unit id="org.slf4j.impl.log4j12" version="1.7.2.v20131105-2200"/>
<unit id="com.google.guava" version="27.1.0.v20190517-1946"/>
<unit id="com.google.inject" version="3.0.0.v201605172100"/>
+ <unit id="org.slf4j.api" version="1.7.10.v20170428-1633"/>
<repository location="https://download.eclipse.org/releases/2019-12"/>
</location>
<location includeMode="slicer" includeAllPlatforms="true" includeSource="true" includeConfigurePhase="false" type="InstallableUnit">
@@ -30,5 +28,9 @@
<unit id="org.eclipse.license.feature.group" version="2.0.2.v20181016-2210"/>
<repository location="https://download.eclipse.org/cbi/updates/license"/>
</location>
+ <location includeMode="slicer" includeAllPlatforms="true" includeSource="true" includeConfigurePhase="false" type="InstallableUnit">
+ <unit id="org.eclipse.app4mc.utils.platform.sdk.feature.group" version="0.0.0"/>
+ <repository location="https://download.eclipse.org/app4mc/components/addon/migration/snapshot/p2repo/"/>
+ </location>
</locations>
</target>
diff --git a/framework/releng/org.eclipse.app4mc.transformation.target/org.eclipse.app4mc.transformation.target.tpd b/framework/releng/org.eclipse.app4mc.transformation.target/org.eclipse.app4mc.transformation.target.tpd
index 53a1600..6b54829 100644
--- a/framework/releng/org.eclipse.app4mc.transformation.target/org.eclipse.app4mc.transformation.target.tpd
+++ b/framework/releng/org.eclipse.app4mc.transformation.target/org.eclipse.app4mc.transformation.target.tpd
@@ -9,27 +9,26 @@
org.eclipse.equinox.compendium.sdk.feature.group
org.eclipse.xtext.xbase.lib.feature.group
org.apache.commons.lang
- org.apache.log4j
javax.xml
- // SLF4J
- org.slf4j.api [1.7.2,1.7.3)
- org.slf4j.impl.log4j12 [1.7.2,1.7.3)
-
com.google.guava
com.google.inject
+
+ org.slf4j.api
}
location "https://download.eclipse.org/tools/orbit/downloads/drops/R20191126223242/repository" {
org.apache.commons.math3
}
-//location "https://download.eclipse.org/app4mc/updatesites/releases/1.1.0"
+location "https://download.eclipse.org/app4mc/updatesites/releases/1.1.0" {
+ org.eclipse.app4mc.amalthea.models.feature.group
+}
-location "https://download.eclipse.org/app4mc/updatesites/snapshot" {
- org.eclipse.app4mc.amalthea.models.feature.group lazy
+location "https://download.eclipse.org/app4mc/components/addon/migration/releases/1.1.0/p2repo/" {
+ org.eclipse.app4mc.utils.platform.sdk.feature.group lazy
}
location "https://download.eclipse.org/cbi/updates/license" {
org.eclipse.license.feature.group
-}
\ No newline at end of file
+}
diff --git a/load_generator/commons/plugins/org.eclipse.app4mc.slg.commons.m2t/META-INF/MANIFEST.MF b/load_generator/commons/plugins/org.eclipse.app4mc.slg.commons.m2t/META-INF/MANIFEST.MF
index 002b755..98a6e56 100644
--- a/load_generator/commons/plugins/org.eclipse.app4mc.slg.commons.m2t/META-INF/MANIFEST.MF
+++ b/load_generator/commons/plugins/org.eclipse.app4mc.slg.commons.m2t/META-INF/MANIFEST.MF
@@ -6,7 +6,6 @@
Bundle-Vendor: Eclipse APP4MC
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Require-Bundle: com.google.inject;bundle-version="3.0.0",
- org.eclipse.emf;bundle-version="2.6.0",
org.eclipse.app4mc.amalthea.model;bundle-version="1.0.0";visibility:=reexport
Automatic-Module-Name: org.eclipse.app4mc.slg.commons.m2t.transformers.m2t
Export-Package: org.eclipse.app4mc.slg.commons.m2t,
@@ -17,7 +16,6 @@
org.eclipse.app4mc.slg.config,
org.eclipse.app4mc.slg.config.util,
org.eclipse.app4mc.transformation;version="0.1.0",
- org.eclipse.app4mc.transformation.executiontype;version="0.1.0",
org.eclipse.app4mc.transformation.transformers;version="0.1.0",
org.eclipse.app4mc.transformation.util;version="0.1.0",
- org.slf4j;version="1.7.2"
+ org.eclipse.app4mc.util.sessionlog;version="1.1.0"
diff --git a/load_generator/commons/plugins/org.eclipse.app4mc.slg.commons.m2t/src/org/eclipse/app4mc/slg/commons/m2t/AmaltheaMultiFileLoader.java b/load_generator/commons/plugins/org.eclipse.app4mc.slg.commons.m2t/src/org/eclipse/app4mc/slg/commons/m2t/AmaltheaMultiFileLoader.java
deleted file mode 100644
index c55c79b..0000000
--- a/load_generator/commons/plugins/org.eclipse.app4mc.slg.commons.m2t/src/org/eclipse/app4mc/slg/commons/m2t/AmaltheaMultiFileLoader.java
+++ /dev/null
@@ -1,93 +0,0 @@
-/**
- * *******************************************************************************
- * Copyright (c) 2020 Robert Bosch GmbH.
- *
- * This program and the accompanying materials are made
- * available under the terms of the Eclipse Public License 2.0
- * which is available at https://www.eclipse.org/legal/epl-2.0/
- *
- * SPDX-License-Identifier: EPL-2.0
- *
- * Contributors:
- * Robert Bosch GmbH - initial API and implementation
- * *******************************************************************************
- */
-
-package org.eclipse.app4mc.slg.commons.m2t;
-
-import java.io.File;
-import java.io.IOException;
-import java.util.ArrayList;
-import java.util.List;
-
-import org.eclipse.app4mc.amalthea.model.Amalthea;
-import org.eclipse.app4mc.amalthea.model.AmaltheaPackage;
-import org.eclipse.app4mc.amalthea.model.emf.AmaltheaResourceFactory;
-import org.eclipse.app4mc.amalthea.model.emf.AmaltheaResourceSetImpl;
-import org.eclipse.emf.common.util.URI;
-import org.eclipse.emf.ecore.EObject;
-import org.eclipse.emf.ecore.resource.Resource;
-import org.eclipse.emf.ecore.resource.ResourceSet;
-import org.eclipse.emf.ecore.resource.impl.ResourceSetImpl;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
-/**
- * AmaltheaMultiFileLoader
- *
- * Should be replaced by standard AmaltheaLoader (APP4MC version > 1.0.0)
- *
- */
-@Deprecated
-public class AmaltheaMultiFileLoader implements IMultiFileLoader{
-
- private static final Logger LOG = LoggerFactory.getLogger(AmaltheaMultiFileLoader.class);
-
- public ResourceSet loadMultipleFiles(String directoryPath) {
-
- File folder = new File(directoryPath);
-
- if (folder.isDirectory()) {
- File[] listFiles = folder.listFiles((file, name) -> name.endsWith(".amxmi"));
-
- ResourceSet resourceSet = initializeResourceSet();
-
- loadMultipleFiles(resourceSet, listFiles);
-
- return resourceSet;
- }
-
- return new ResourceSetImpl();
-
- }
-
- private List<Amalthea> loadMultipleFiles(ResourceSet resourceSet, File[] listFiles) {
-
- List<Amalthea> models = new ArrayList<>();
-
- for (File amxmiFile : listFiles) {
-
- final Resource res = resourceSet.createResource(URI.createURI("file:////" + amxmiFile.getAbsolutePath()));
- try {
- res.load(null);
- for (final EObject content : res.getContents()) {
- if (content instanceof Amalthea) {
- models.add((Amalthea) content);
- }
- }
- } catch (IOException e) {
- LOG.error(e.getMessage(),e);
- }
- }
- return models;
- }
-
- private static ResourceSet initializeResourceSet() {
- AmaltheaPackage.eINSTANCE.eClass(); // register the package
- final AmaltheaResourceSetImpl resSet = new AmaltheaResourceSetImpl();
- resSet.getResourceFactoryRegistry().getExtensionToFactoryMap().put("amxmi", new AmaltheaResourceFactory());
-
- return resSet;
- }
-
-}
diff --git a/load_generator/commons/plugins/org.eclipse.app4mc.slg.commons.m2t/src/org/eclipse/app4mc/slg/commons/m2t/IMultiFileLoader.java b/load_generator/commons/plugins/org.eclipse.app4mc.slg.commons.m2t/src/org/eclipse/app4mc/slg/commons/m2t/IMultiFileLoader.java
deleted file mode 100644
index 83dfa24..0000000
--- a/load_generator/commons/plugins/org.eclipse.app4mc.slg.commons.m2t/src/org/eclipse/app4mc/slg/commons/m2t/IMultiFileLoader.java
+++ /dev/null
@@ -1,22 +0,0 @@
-/*******************************************************************************
- * Copyright (c) 2020 Robert Bosch GmbH.
- *
- * This program and the accompanying materials are made
- * available under the terms of the Eclipse Public License 2.0
- * which is available at https://www.eclipse.org/legal/epl-2.0/
- *
- * SPDX-License-Identifier: EPL-2.0
- *
- * Contributors:
- * Robert Bosch GmbH - initial API and implementation
- *******************************************************************************/
-
-package org.eclipse.app4mc.slg.commons.m2t;
-
-import org.eclipse.emf.ecore.resource.ResourceSet;
-
-@Deprecated
-public interface IMultiFileLoader {
-
- public ResourceSet loadMultipleFiles(String directoryPath);
-}
diff --git a/load_generator/commons/plugins/org.eclipse.app4mc.slg.commons.m2t/src/org/eclipse/app4mc/slg/commons/m2t/M2TTransformationConfig.java b/load_generator/commons/plugins/org.eclipse.app4mc.slg.commons.m2t/src/org/eclipse/app4mc/slg/commons/m2t/M2TTransformationConfig.java
deleted file mode 100644
index 2bf2abf..0000000
--- a/load_generator/commons/plugins/org.eclipse.app4mc.slg.commons.m2t/src/org/eclipse/app4mc/slg/commons/m2t/M2TTransformationConfig.java
+++ /dev/null
@@ -1,47 +0,0 @@
-/**
- * *******************************************************************************
- * Copyright (c) 2020 Robert Bosch GmbH.
- *
- * This program and the accompanying materials are made
- * available under the terms of the Eclipse Public License 2.0
- * which is available at https://www.eclipse.org/legal/epl-2.0/
- *
- * SPDX-License-Identifier: EPL-2.0
- *
- * Contributors:
- * Robert Bosch GmbH - initial API and implementation
- * *******************************************************************************
- */
-
-package org.eclipse.app4mc.slg.commons.m2t;
-
-import org.eclipse.app4mc.amalthea.model.AmaltheaFactory;
-import org.eclipse.app4mc.transformation.executiontype.IModelToTextConfig;
-import org.eclipse.emf.ecore.resource.ResourceSet;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
-public class M2TTransformationConfig implements IModelToTextConfig {
-
- private static final Logger LOG = LoggerFactory.getLogger(M2TTransformationConfig.class);
-
- protected AmaltheaMultiFileLoader amaltheaMultiFileLoader = new AmaltheaMultiFileLoader();
- protected String folderPath;
-
- public ResourceSet getInputResourceSet() {
- if (this.folderPath != null) {
- ResourceSet resourceSet = this.amaltheaMultiFileLoader.loadMultipleFiles(this.folderPath);
-
- if (resourceSet.getResources().isEmpty()) {
- LOG.error(
- "No Amalthea model files are loaded. Verify if the model version is : {}",
- AmaltheaFactory.eINSTANCE.createAmalthea().getVersion());
- }
-
- return resourceSet;
- }
- LOG.error("input_models_folder parameter not set");
-
- return null;
- }
-}
diff --git a/load_generator/commons/plugins/org.eclipse.app4mc.slg.commons.m2t/src/org/eclipse/app4mc/slg/commons/m2t/transformers/AmaltheaModel2TextTransformer.java b/load_generator/commons/plugins/org.eclipse.app4mc.slg.commons.m2t/src/org/eclipse/app4mc/slg/commons/m2t/transformers/AmaltheaModel2TextTransformer.java
index 92fe81c..b515780 100644
--- a/load_generator/commons/plugins/org.eclipse.app4mc.slg.commons.m2t/src/org/eclipse/app4mc/slg/commons/m2t/transformers/AmaltheaModel2TextTransformer.java
+++ b/load_generator/commons/plugins/org.eclipse.app4mc.slg.commons.m2t/src/org/eclipse/app4mc/slg/commons/m2t/transformers/AmaltheaModel2TextTransformer.java
@@ -21,17 +21,17 @@
import org.eclipse.app4mc.slg.commons.m2t.CustomObjectsStore;
import org.eclipse.app4mc.slg.config.ConfigModel;
import org.eclipse.app4mc.slg.config.util.ConfigurationFileLoader;
+import org.eclipse.app4mc.transformation.TransformationConstants;
+import org.eclipse.app4mc.util.sessionlog.SessionLogger;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.resource.Resource;
import org.eclipse.emf.ecore.resource.ResourceSet;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
import com.google.inject.Inject;
public class AmaltheaModel2TextTransformer extends SLGBaseTransformer {
- private static final Logger LOG = LoggerFactory.getLogger(AmaltheaModel2TextTransformer.class);
+ @Inject private SessionLogger logger;
@Inject private Properties properties;
@Inject private CustomObjectsStore customObjsStore;
@@ -46,27 +46,34 @@
for (final Resource resource : inputResourceSet.getResources()) {
for (final EObject model : resource.getContents()) {
// check javadoc : https://www.eclipse.org/xtend/documentation/204_activeannotations.html#active-annotations-expression
- LOG.info("Processing file : {}", resource.getURI());
+ logger.info("Processing file : {0}", resource.getURI());
- final String outputFolder = getProperty("m2t_output_folder");
+ final String outputFolder = getProperty(TransformationConstants.TRANSFORMATION_OUTPUT_FOLDER);
final String configurationFilePath = getProperty("configurationFile");
if ((configurationFilePath != null)) {
- configModel = new ConfigurationFileLoader().loadConfigurationFile(configurationFilePath);
+ try {
+ configModel = ConfigurationFileLoader.loadConfigurationFile(configurationFilePath);
+ } catch (IllegalStateException e) {
+ logger.error(e.getMessage(), e);
+ return;
+ }
customObjsStore.<ConfigModel>injectMembers(ConfigModel.class, configModel);
} else {
- LOG.error("configuration file path is not supplied as a command line argument");
+ logger.error("configuration file path is not supplied as a command line argument");
+ return;
}
if ((configModel == null)) {
- LOG.error("As no configuration model is available , unable to proceed with the load generator application !!");
+ logger.error("As no configuration model is available , unable to proceed with the load generator application !!");
+ return;
}
if ((model instanceof Amalthea)) {
this.transform(((Amalthea) model), outputFolder);
}
- LOG.info("Script file generated at : {}", outputFolder);
+ logger.info("Script file generated at : {0}", outputFolder);
}
}
diff --git a/load_generator/commons/plugins/org.eclipse.app4mc.slg.commons.m2t/src/org/eclipse/app4mc/slg/commons/m2t/transformers/sw/ActivityGraphItemTransformer.java b/load_generator/commons/plugins/org.eclipse.app4mc.slg.commons.m2t/src/org/eclipse/app4mc/slg/commons/m2t/transformers/sw/ActivityGraphItemTransformer.java
index cd0fd5b..5057bd0 100644
--- a/load_generator/commons/plugins/org.eclipse.app4mc.slg.commons.m2t/src/org/eclipse/app4mc/slg/commons/m2t/transformers/sw/ActivityGraphItemTransformer.java
+++ b/load_generator/commons/plugins/org.eclipse.app4mc.slg.commons.m2t/src/org/eclipse/app4mc/slg/commons/m2t/transformers/sw/ActivityGraphItemTransformer.java
@@ -25,18 +25,17 @@
import org.eclipse.app4mc.amalthea.model.Ticks;
import org.eclipse.app4mc.slg.commons.m2t.transformers.SLGBaseTransformer;
import org.eclipse.app4mc.slg.commons.m2t.transformers.SLGTranslationUnit;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
+import org.eclipse.app4mc.util.sessionlog.SessionLogger;
import com.google.inject.Inject;
import com.google.inject.Singleton;
@Singleton
public class ActivityGraphItemTransformer extends SLGBaseTransformer {
- private static final String UNSUPPORTED_ELEMENT = "Unsupported element inside ActivityGraph : {}";
- private static final Logger LOG = LoggerFactory.getLogger(ActivityGraphItemTransformer.class);
+ private static final String UNSUPPORTED_ELEMENT = "Unsupported element inside ActivityGraph : {0}";
+ @Inject private SessionLogger logger;
@Inject private RunnableTransformer runnableTransformer;
@Inject private LabelAccessTransformer labelAccessTransformer;
@Inject private TicksTransformer ticksTransformer;
@@ -56,15 +55,15 @@
return runnableTransformer.transform(((RunnableCall) graphItem).getRunnable());
} else if (graphItem instanceof ChannelReceive) {
- LOG.error(UNSUPPORTED_ELEMENT, "ChannelReceive");
+ logger.error(UNSUPPORTED_ELEMENT, "ChannelReceive");
return new SLGTranslationUnit("ChannelReceive is not yet implemented");
} else if (graphItem instanceof ChannelSend) {
- LOG.error(UNSUPPORTED_ELEMENT, "ChannelSend");
+ logger.error(UNSUPPORTED_ELEMENT, "ChannelSend");
return new SLGTranslationUnit("ChannelSend is not yet implemented");
}
- LOG.error(UNSUPPORTED_ELEMENT, graphItem.getClass().getName());
+ logger.error(UNSUPPORTED_ELEMENT, graphItem.getClass().getName());
return new SLGTranslationUnit(graphItem.eClass().getName() + " in not supported");
}
diff --git a/load_generator/commons/plugins/org.eclipse.app4mc.slg.commons.m2t/xtend-gen/readme.txt b/load_generator/commons/plugins/org.eclipse.app4mc.slg.commons.m2t/xtend-gen/readme.txt
deleted file mode 100644
index 759a0c2..0000000
--- a/load_generator/commons/plugins/org.eclipse.app4mc.slg.commons.m2t/xtend-gen/readme.txt
+++ /dev/null
@@ -1 +0,0 @@
-Code generated by Xtend builder.
diff --git a/load_generator/commons/plugins/org.eclipse.app4mc.slg.config/META-INF/MANIFEST.MF b/load_generator/commons/plugins/org.eclipse.app4mc.slg.config/META-INF/MANIFEST.MF
index 29a0051..4415a66 100644
--- a/load_generator/commons/plugins/org.eclipse.app4mc.slg.config/META-INF/MANIFEST.MF
+++ b/load_generator/commons/plugins/org.eclipse.app4mc.slg.config/META-INF/MANIFEST.MF
@@ -11,12 +11,7 @@
Export-Package: org.eclipse.app4mc.slg.config,
org.eclipse.app4mc.slg.config.impl,
org.eclipse.app4mc.slg.config.util
-Require-Bundle: org.eclipse.core.runtime,
- org.eclipse.emf.ecore;visibility:=reexport,
+Require-Bundle: org.eclipse.emf.ecore;visibility:=reexport,
org.eclipse.emf.ecore.xmi;bundle-version="2.14.0"
Bundle-ActivationPolicy: lazy
-Import-Package: javax.inject;version="1.0.0",
- org.eclipse.app4mc.transformation;version="0.1.0",
- org.eclipse.app4mc.transformation.executiontype;version="0.1.0",
- org.eclipse.app4mc.transformation.transformers;version="0.1.0",
- org.slf4j;version="1.7.2"
+Import-Package: javax.inject;version="1.0.0"
diff --git a/load_generator/commons/plugins/org.eclipse.app4mc.slg.config/src/org/eclipse/app4mc/slg/config/util/ConfigurationFileLoader.java b/load_generator/commons/plugins/org.eclipse.app4mc.slg.config/src/org/eclipse/app4mc/slg/config/util/ConfigurationFileLoader.java
index 9a3f9e7..bdca3a8 100644
--- a/load_generator/commons/plugins/org.eclipse.app4mc.slg.config/src/org/eclipse/app4mc/slg/config/util/ConfigurationFileLoader.java
+++ b/load_generator/commons/plugins/org.eclipse.app4mc.slg.config/src/org/eclipse/app4mc/slg/config/util/ConfigurationFileLoader.java
@@ -1,6 +1,6 @@
/**
* *******************************************************************************
- * Copyright (c) 2020 Robert Bosch GmbH.
+ * Copyright (c) 2020, 2021 Robert Bosch GmbH.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
@@ -27,14 +27,10 @@
import org.eclipse.emf.ecore.resource.ResourceSet;
import org.eclipse.emf.ecore.resource.impl.ResourceSetImpl;
import org.eclipse.emf.ecore.xmi.impl.XMIResourceFactoryImpl;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-public class ConfigurationFileLoader {
+public final class ConfigurationFileLoader {
- private static final Logger LOG = LoggerFactory.getLogger(ConfigurationFileLoader.class);
-
- public ConfigModel loadConfigurationFile(String filePath) {
+ public static ConfigModel loadConfigurationFile(String filePath) {
ResourceSet resourceSet = new ResourceSetImpl();
resourceSet.getResourceFactoryRegistry().getExtensionToFactoryMap()
@@ -48,7 +44,6 @@
String path = file.getCanonicalPath();
URI uri = file.isFile() ? URI.createFileURI(path) : URI.createURI(path);
Resource resource = resourceSet.getResource(uri, true);
- LOG.info("Loaded {}", uri);
// Validate the contents of the loaded resource.
//
@@ -61,7 +56,7 @@
}
}
} catch (RuntimeException | IOException exception) {
- LOG.error("Error loading configuration file : {}", exception.getMessage());
+ throw new IllegalStateException("Error on loading configuration file", exception);
}
return null;
diff --git a/load_generator/commons/releng/org.eclipse.app4mc.slg.commons.target/org.eclipse.app4mc.slg.commons.target.target b/load_generator/commons/releng/org.eclipse.app4mc.slg.commons.target/org.eclipse.app4mc.slg.commons.target.target
index f2c050b..ccfcd7b 100644
--- a/load_generator/commons/releng/org.eclipse.app4mc.slg.commons.target/org.eclipse.app4mc.slg.commons.target.target
+++ b/load_generator/commons/releng/org.eclipse.app4mc.slg.commons.target/org.eclipse.app4mc.slg.commons.target.target
@@ -1,16 +1,13 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<?pde?>
<!-- generated with https://github.com/eclipse-cbi/targetplatform-dsl -->
-<target name="Synthetic Load Generator Commons Target" sequenceNumber="1619009225">
+<target name="Synthetic Load Generator Commons Target" sequenceNumber="1620299800">
<locations>
<location includeMode="slicer" includeAllPlatforms="true" includeSource="true" includeConfigurePhase="false" type="InstallableUnit">
<unit id="org.eclipse.sdk.ide" version="4.14.0.I20191210-0610"/>
<unit id="org.eclipse.emf.ecore.xcore.lib.feature.group" version="1.5.0.v20190401-0856"/>
<unit id="org.eclipse.emf.mwe.core" version="1.5.1.v20191121-1148"/>
<unit id="org.eclipse.emf.sdk.feature.group" version="2.20.0.v20191028-0905"/>
- <unit id="org.eclipse.emf.transaction.feature.group" version="1.12.0.201805140824"/>
- <unit id="org.eclipse.emf.validation.feature.group" version="1.12.1.201812070911"/>
- <unit id="org.eclipse.emf.workspace.feature.group" version="1.12.0.201805140824"/>
<unit id="org.eclipse.equinox.sdk.feature.group" version="3.20.0.v20191122-2104"/>
<unit id="org.eclipse.equinox.compendium.sdk.feature.group" version="3.20.0.v20191107-1453"/>
<unit id="org.eclipse.xtext.runtime.feature.group" version="2.20.0.v20191202-1256"/>
@@ -19,29 +16,24 @@
<unit id="org.eclipse.xtext.xbase.lib.feature.group" version="2.20.0.v20191202-0910"/>
<unit id="org.eclipse.xtend.sdk.feature.group" version="2.20.0.v20191202-1256"/>
<unit id="org.eclipse.xpand.sdk.feature.group" version="2.2.0.v201605260315"/>
- <unit id="org.apache.commons.cli" version="1.2.0.v201404270220"/>
<unit id="org.apache.commons.lang" version="2.6.0.v201404270220"/>
- <unit id="org.apache.log4j" version="1.2.15.v201012070815"/>
- <unit id="org.apache.xerces" version="2.9.0.v201101211617"/>
- <unit id="org.apache.xalan" version="2.7.1.v201005080400"/>
- <unit id="org.apache.xml.resolver" version="1.2.0.v201005080400"/>
- <unit id="org.apache.xml.serializer" version="2.7.1.v201005080400"/>
<unit id="javax.xml" version="1.3.4.v201005080400"/>
- <unit id="org.jdom" version="1.1.1.v201101151400"/>
<unit id="org.slf4j.api" version="1.7.2.v20121108-1250"/>
- <unit id="org.slf4j.impl.log4j12" version="1.7.2.v20131105-2200"/>
<unit id="com.google.guava" version="27.1.0.v20190517-1946"/>
<unit id="com.google.inject" version="3.0.0.v201605172100"/>
<repository location="https://download.eclipse.org/releases/2019-12"/>
</location>
<location includeMode="slicer" includeAllPlatforms="true" includeSource="true" includeConfigurePhase="false" type="InstallableUnit">
- <unit id="org.apache.commons.math" version="2.1.0.v201105210652"/>
<unit id="org.apache.commons.math3" version="3.5.0.v20190611-1023"/>
<repository location="https://download.eclipse.org/tools/orbit/downloads/drops/R20191126223242/repository"/>
</location>
<location includeMode="slicer" includeAllPlatforms="true" includeSource="true" includeConfigurePhase="false" type="InstallableUnit">
- <unit id="org.eclipse.app4mc.platform.sdk.feature.group" version="0.0.0"/>
- <repository location="http://download.eclipse.org/app4mc/updatesites/snapshot"/>
+ <unit id="org.eclipse.app4mc.platform.sdk.feature.group" version="1.1.0.202104301043"/>
+ <repository location="https://download.eclipse.org/app4mc/updatesites/releases/1.1.0"/>
+ </location>
+ <location includeMode="slicer" includeAllPlatforms="true" includeSource="true" includeConfigurePhase="false" type="InstallableUnit">
+ <unit id="org.eclipse.app4mc.utils.platform.sdk.feature.group" version="1.1.0.202104300936"/>
+ <repository location="https://download.eclipse.org/app4mc/components/addon/migration/releases/1.1.0/p2repo/"/>
</location>
<location includeMode="slicer" includeAllPlatforms="true" includeSource="true" includeConfigurePhase="false" type="InstallableUnit">
<unit id="org.eclipse.license.feature.group" version="2.0.2.v20181016-2210"/>
diff --git a/load_generator/commons/releng/org.eclipse.app4mc.slg.commons.target/org.eclipse.app4mc.slg.commons.target.tpd b/load_generator/commons/releng/org.eclipse.app4mc.slg.commons.target/org.eclipse.app4mc.slg.commons.target.tpd
index 1ad7dc8..3aab4af 100644
--- a/load_generator/commons/releng/org.eclipse.app4mc.slg.commons.target/org.eclipse.app4mc.slg.commons.target.tpd
+++ b/load_generator/commons/releng/org.eclipse.app4mc.slg.commons.target/org.eclipse.app4mc.slg.commons.target.tpd
@@ -7,9 +7,6 @@
org.eclipse.emf.ecore.xcore.lib.feature.group
org.eclipse.emf.mwe.core
org.eclipse.emf.sdk.feature.group
- org.eclipse.emf.transaction.feature.group
- org.eclipse.emf.validation.feature.group
- org.eclipse.emf.workspace.feature.group
org.eclipse.equinox.sdk.feature.group
org.eclipse.equinox.compendium.sdk.feature.group
org.eclipse.xtext.runtime.feature.group
@@ -18,33 +15,26 @@
org.eclipse.xtext.xbase.lib.feature.group
org.eclipse.xtend.sdk.feature.group
org.eclipse.xpand.sdk.feature.group
- org.apache.commons.cli
org.apache.commons.lang
- org.apache.log4j
- org.apache.xerces
- org.apache.xalan
- org.apache.xml.resolver
- org.apache.xml.serializer
javax.xml
- org.jdom
// SLF4J
org.slf4j.api [1.7.2,1.7.3)
- org.slf4j.impl.log4j12 [1.7.2,1.7.3)
com.google.guava
com.google.inject
}
location "https://download.eclipse.org/tools/orbit/downloads/drops/R20191126223242/repository" {
- org.apache.commons.math
org.apache.commons.math3
}
-//location "http://download.eclipse.org/app4mc/updatesites/releases/1.1.0"
+location "https://download.eclipse.org/app4mc/updatesites/releases/1.1.0" {
+ org.eclipse.app4mc.platform.sdk.feature.group
+}
-location "http://download.eclipse.org/app4mc/updatesites/snapshot" {
- org.eclipse.app4mc.platform.sdk.feature.group lazy
+location "https://download.eclipse.org/app4mc/components/addon/migration/releases/1.1.0/p2repo/" {
+ org.eclipse.app4mc.utils.platform.sdk.feature.group
}
location "https://download.eclipse.org/cbi/updates/license" {
diff --git a/load_generator/linux/plugins/org.eclipse.app4mc.slg.linux/META-INF/MANIFEST.MF b/load_generator/linux/plugins/org.eclipse.app4mc.slg.linux/META-INF/MANIFEST.MF
index 476290d..14111ec 100644
--- a/load_generator/linux/plugins/org.eclipse.app4mc.slg.linux/META-INF/MANIFEST.MF
+++ b/load_generator/linux/plugins/org.eclipse.app4mc.slg.linux/META-INF/MANIFEST.MF
@@ -7,17 +7,15 @@
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Import-Package: javax.inject;version="1.0.0",
org.eclipse.app4mc.transformation;version="0.1.0",
- org.eclipse.app4mc.transformation.executiontype;version="0.1.0",
org.eclipse.app4mc.transformation.transformers;version="0.1.0",
org.eclipse.app4mc.transformation.util;version="0.1.0",
- org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional,
- org.slf4j;version="1.7.2"
+ org.eclipse.app4mc.util.sessionlog;version="1.1.0",
+ org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional
Require-Bundle: com.google.inject;bundle-version="3.0.0",
org.eclipse.app4mc.slg.commons.m2t;bundle-version="0.1.0",
org.eclipse.app4mc.slg.config;bundle-version="0.1.0"
Bundle-ActivationPolicy: lazy
Bundle-Vendor: Eclipse APP4MC
-Service-Component: OSGI-INF/org.eclipse.app4mc.slg.linux.artefacts.LinuxM2TTransformationConfig.xml,
- OSGI-INF/org.eclipse.app4mc.slg.linux.artefacts.LinuxGoogleGuiceModuleFactory.xml,
+Service-Component: OSGI-INF/org.eclipse.app4mc.slg.linux.artefacts.LinuxGoogleGuiceModuleFactory.xml,
OSGI-INF/org.eclipse.app4mc.slg.linux.artefacts.LinuxRootTransformer.xml,
OSGI-INF/org.eclipse.app4mc.slg.linux.artefacts.LinuxSLGTransformationDefinition.xml
diff --git a/load_generator/linux/plugins/org.eclipse.app4mc.slg.linux/OSGI-INF/org.eclipse.app4mc.slg.linux.artefacts.LinuxM2TTransformationConfig.xml b/load_generator/linux/plugins/org.eclipse.app4mc.slg.linux/OSGI-INF/org.eclipse.app4mc.slg.linux.artefacts.LinuxM2TTransformationConfig.xml
deleted file mode 100644
index 9ed0eeb..0000000
--- a/load_generator/linux/plugins/org.eclipse.app4mc.slg.linux/OSGI-INF/org.eclipse.app4mc.slg.linux.artefacts.LinuxM2TTransformationConfig.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.2.0" activate="activate" configuration-pid="TRANSFORMATION_SESSION_CONFIG" configuration-policy="require" name="org.eclipse.app4mc.slg.linux.artefacts.LinuxM2TTransformationConfig">
- <property name="transformation" value="LINUX_SLG"/>
- <service>
- <provide interface="org.eclipse.app4mc.transformation.executiontype.IModelToTextConfig"/>
- </service>
- <implementation class="org.eclipse.app4mc.slg.linux.artefacts.LinuxM2TTransformationConfig"/>
-</scr:component>
\ No newline at end of file
diff --git a/load_generator/linux/plugins/org.eclipse.app4mc.slg.linux/src/org/eclipse/app4mc/slg/linux/artefacts/LinuxGoogleGuiceModule.java b/load_generator/linux/plugins/org.eclipse.app4mc.slg.linux/src/org/eclipse/app4mc/slg/linux/artefacts/LinuxGoogleGuiceModule.java
index 3d003c2..42b5fbd 100644
--- a/load_generator/linux/plugins/org.eclipse.app4mc.slg.linux/src/org/eclipse/app4mc/slg/linux/artefacts/LinuxGoogleGuiceModule.java
+++ b/load_generator/linux/plugins/org.eclipse.app4mc.slg.linux/src/org/eclipse/app4mc/slg/linux/artefacts/LinuxGoogleGuiceModule.java
@@ -20,19 +20,22 @@
import org.eclipse.app4mc.slg.commons.m2t.CustomObjectsStore;
import org.eclipse.app4mc.slg.commons.m2t.transformers.sw.RunnableTransformer;
import org.eclipse.app4mc.slg.customization.CustomRunnableTransformer;
+import org.eclipse.app4mc.transformation.util.TransformationGuiceModule;
+import org.eclipse.app4mc.util.sessionlog.SessionLogger;
-import com.google.inject.AbstractModule;
-
-public class LinuxGoogleGuiceModule extends AbstractModule {
+public class LinuxGoogleGuiceModule extends TransformationGuiceModule {
protected Properties properties;
- public LinuxGoogleGuiceModule(Properties properties) {
+ public LinuxGoogleGuiceModule(SessionLogger logger, Properties properties) {
+ super(logger);
this.properties = properties;
}
@Override
protected void configure() {
+ super.configure();
+
bind(Properties.class).toInstance(this.properties);
bind(CustomObjectsStore.class).toInstance(new CustomObjectsStore());
diff --git a/load_generator/linux/plugins/org.eclipse.app4mc.slg.linux/src/org/eclipse/app4mc/slg/linux/artefacts/LinuxGoogleGuiceModuleFactory.java b/load_generator/linux/plugins/org.eclipse.app4mc.slg.linux/src/org/eclipse/app4mc/slg/linux/artefacts/LinuxGoogleGuiceModuleFactory.java
index d2dec57..356fd36 100644
--- a/load_generator/linux/plugins/org.eclipse.app4mc.slg.linux/src/org/eclipse/app4mc/slg/linux/artefacts/LinuxGoogleGuiceModuleFactory.java
+++ b/load_generator/linux/plugins/org.eclipse.app4mc.slg.linux/src/org/eclipse/app4mc/slg/linux/artefacts/LinuxGoogleGuiceModuleFactory.java
@@ -18,6 +18,7 @@
import java.util.Properties;
import org.eclipse.app4mc.transformation.ServiceConstants;
+import org.eclipse.app4mc.util.sessionlog.SessionLogger;
import org.osgi.service.component.annotations.Component;
import org.osgi.service.component.annotations.ConfigurationPolicy;
@@ -28,8 +29,8 @@
)
public class LinuxGoogleGuiceModuleFactory {
- public LinuxGoogleGuiceModule getModule(Properties properties) {
- return new LinuxGoogleGuiceModule(properties);
+ public LinuxGoogleGuiceModule getModule(SessionLogger logger, Properties properties) {
+ return new LinuxGoogleGuiceModule(logger, properties);
}
}
diff --git a/load_generator/linux/plugins/org.eclipse.app4mc.slg.linux/src/org/eclipse/app4mc/slg/linux/artefacts/LinuxM2TTransformationConfig.java b/load_generator/linux/plugins/org.eclipse.app4mc.slg.linux/src/org/eclipse/app4mc/slg/linux/artefacts/LinuxM2TTransformationConfig.java
deleted file mode 100644
index 2b7cf0d..0000000
--- a/load_generator/linux/plugins/org.eclipse.app4mc.slg.linux/src/org/eclipse/app4mc/slg/linux/artefacts/LinuxM2TTransformationConfig.java
+++ /dev/null
@@ -1,40 +0,0 @@
-/**
- ********************************************************************************
- * Copyright (c) 2020-2021 Robert Bosch GmbH.
- *
- * This program and the accompanying materials are made
- * available under the terms of the Eclipse Public License 2.0
- * which is available at https://www.eclipse.org/legal/epl-2.0/
- *
- * SPDX-License-Identifier: EPL-2.0
- *
- * Contributors:
- * Robert Bosch GmbH - initial API and implementation
- ********************************************************************************
- */
-
-package org.eclipse.app4mc.slg.linux.artefacts;
-
-import java.util.Map;
-
-import org.eclipse.app4mc.slg.commons.m2t.M2TTransformationConfig;
-import org.eclipse.app4mc.transformation.ServiceConstants;
-import org.eclipse.app4mc.transformation.executiontype.IModelToTextConfig;
-import org.osgi.service.component.annotations.Activate;
-import org.osgi.service.component.annotations.Component;
-import org.osgi.service.component.annotations.ConfigurationPolicy;
-
-@Component(
- configurationPid = ServiceConstants.SESSION_CONFIGURATION_PID,
- configurationPolicy = ConfigurationPolicy.REQUIRE,
- property = { "transformation=LINUX_SLG" },
- service = IModelToTextConfig.class
-)
-public class LinuxM2TTransformationConfig extends M2TTransformationConfig {
-
- @Activate
- void activate(Map<String, ?> properties) {
- folderPath = (String) properties.get("input_models_folder");
- }
-
-}
diff --git a/load_generator/linux/plugins/org.eclipse.app4mc.slg.linux/src/org/eclipse/app4mc/slg/linux/artefacts/LinuxRootTransformer.java b/load_generator/linux/plugins/org.eclipse.app4mc.slg.linux/src/org/eclipse/app4mc/slg/linux/artefacts/LinuxRootTransformer.java
index 3a57809..391fa3c 100644
--- a/load_generator/linux/plugins/org.eclipse.app4mc.slg.linux/src/org/eclipse/app4mc/slg/linux/artefacts/LinuxRootTransformer.java
+++ b/load_generator/linux/plugins/org.eclipse.app4mc.slg.linux/src/org/eclipse/app4mc/slg/linux/artefacts/LinuxRootTransformer.java
@@ -23,13 +23,10 @@
import org.eclipse.app4mc.transformation.ServiceConstants;
import org.eclipse.app4mc.transformation.TransformationConstants;
import org.eclipse.app4mc.transformation.transformers.Model2TextRootTransformer;
-import org.eclipse.emf.ecore.resource.ResourceSet;
import org.osgi.service.component.annotations.Activate;
import org.osgi.service.component.annotations.Component;
import org.osgi.service.component.annotations.ConfigurationPolicy;
import org.osgi.service.component.annotations.Reference;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
import com.google.inject.Guice;
import com.google.inject.Injector;
@@ -42,37 +39,38 @@
)
public class LinuxRootTransformer extends Model2TextRootTransformer {
- private static final Logger LOG = LoggerFactory.getLogger(LinuxRootTransformer.class);
-
@Reference
private LinuxGoogleGuiceModuleFactory moduleFactory;
Properties properties;
@Activate
- void activate(Map<String, ?> properties) {
- LOG.debug("LinuxRootTransformer activated : {}", this.hashCode());
-
+ @Override
+ protected void activate(Map<String, ?> properties) {
+ super.activate(properties);
this.properties = new Properties();
this.properties.putAll(properties);
+
+ // set the output directory to the local properties
+ this.properties.put(TransformationConstants.TRANSFORMATION_OUTPUT_FOLDER, getOutputFolder());
}
@Override
- public void m2tTransformation(ResourceSet inputResourceSet) {
+ public void m2tTransformation() {
- Injector injector = Guice.createInjector(moduleFactory.getModule(properties));
+ Injector injector = Guice.createInjector(moduleFactory.getModule(logger, properties));
LinuxModel2TextTransformer instance = injector.getInstance(LinuxModel2TextTransformer.class);
harmonizeSLGParams(properties);
- instance.m2tTransformation(inputResourceSet);
+ instance.m2tTransformation(getInputResourceSet(getInputFolder(), logger));
}
private void harmonizeSLGParams(Properties props) {
if (!props.containsKey("configurationFile")) {
- LOG.error("'configurationFile' property not set in the input properties file");
+ logger.error("'configurationFile' property not set in the input properties file");
throw new IllegalArgumentException("'configurationFile' property not set in the input properties file");
}
diff --git a/load_generator/linux/plugins/org.eclipse.app4mc.slg.linux/src/org/eclipse/app4mc/slg/linux/artefacts/LinuxSLGTransformationDefinition.java b/load_generator/linux/plugins/org.eclipse.app4mc.slg.linux/src/org/eclipse/app4mc/slg/linux/artefacts/LinuxSLGTransformationDefinition.java
index b8296b6..0bcc289 100644
--- a/load_generator/linux/plugins/org.eclipse.app4mc.slg.linux/src/org/eclipse/app4mc/slg/linux/artefacts/LinuxSLGTransformationDefinition.java
+++ b/load_generator/linux/plugins/org.eclipse.app4mc.slg.linux/src/org/eclipse/app4mc/slg/linux/artefacts/LinuxSLGTransformationDefinition.java
@@ -15,6 +15,10 @@
package org.eclipse.app4mc.slg.linux.artefacts;
+import java.io.File;
+import java.util.Arrays;
+import java.util.List;
+
import org.eclipse.app4mc.transformation.TransformationDefinition;
import org.osgi.service.component.annotations.Component;
@@ -41,4 +45,11 @@
return "LINUX_SLG";
}
+ @Override
+ public List<TransformationParameter> getTransformationParameter() {
+ return Arrays.asList(
+ new TransformationParameter("SLG Settings", "configurationFile", "Configuration Model", File.class),
+ new TransformationParameter("Linux SLG Settings", "experimentalCodeSnippetMatching", "Experimental Code Snippet Matching", Boolean.class),
+ new TransformationParameter("Linux SLG Settings", "enableInstrumentation", "Enable Instrumentation", Boolean.class));
+ }
}
diff --git a/load_generator/linux/plugins/org.eclipse.app4mc.slg.linux/src/org/eclipse/app4mc/slg/linux/transformers/LinuxModel2TextTransformer.java b/load_generator/linux/plugins/org.eclipse.app4mc.slg.linux/src/org/eclipse/app4mc/slg/linux/transformers/LinuxModel2TextTransformer.java
index bd86d39..18baf95 100644
--- a/load_generator/linux/plugins/org.eclipse.app4mc.slg.linux/src/org/eclipse/app4mc/slg/linux/transformers/LinuxModel2TextTransformer.java
+++ b/load_generator/linux/plugins/org.eclipse.app4mc.slg.linux/src/org/eclipse/app4mc/slg/linux/transformers/LinuxModel2TextTransformer.java
@@ -32,15 +32,14 @@
import org.eclipse.app4mc.slg.linux.transformers.sw.LinuxRealisticCodeTransformer;
import org.eclipse.app4mc.slg.linux.transformers.sw.LinuxRunnableTransformer;
import org.eclipse.app4mc.slg.linux.transformers.sw.LinuxTaskTransformer;
-import org.eclipse.app4mc.transformation.TransformationConstants;
import org.eclipse.app4mc.transformation.util.OutputBuffer;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
+import org.eclipse.app4mc.util.sessionlog.SessionLogger;
import com.google.inject.Inject;
public class LinuxModel2TextTransformer extends AmaltheaModel2TextTransformer {
+ @Inject private SessionLogger logger;
@Inject private OutputBuffer outputBuffer;
@Inject private LinuxMakeTransformer linuxMakeTransformer;
@Inject private LinuxRealisticCodeTransformer realisticCodeBasedOnCodeSnippet;
@@ -50,8 +49,6 @@
@Inject private LinuxTaskTransformer taskTransformer;
@Inject private InstrumentationTransformer instrumentationTransformer;
- private static final Logger LOG = LoggerFactory.getLogger(LinuxModel2TextTransformer.class);
-
@Override
public void transform(final Amalthea model, final String outputFolder) {
@@ -63,9 +60,9 @@
final StimuliModel stimuliModel = ModelUtil.getOrCreateStimuliModel(model);
final SWModel swModel = ModelUtil.getOrCreateSwModel(model);
- LOG.info("Starting Linux SLG code generation");
+ logger.info("Starting Linux SLG code generation");
- LinuxBaseSettings.initializeOutputBuffer(outputBuffer, getProperty(TransformationConstants.M2T_OUTPUT_FOLDER));
+ LinuxBaseSettings.initializeOutputBuffer(outputBuffer, outputFolder);
if (experimentalCodeSnippetMatching) {
realisticCodeBasedOnCodeSnippet.transform();
@@ -107,7 +104,7 @@
outputBuffer.finish();
- LOG.info("Finished Linux SLG code generation");
+ logger.info("Finished Linux SLG code generation");
}
}
diff --git a/load_generator/linux/plugins/org.eclipse.app4mc.slg.linux/xtend-gen/readme.txt b/load_generator/linux/plugins/org.eclipse.app4mc.slg.linux/xtend-gen/readme.txt
deleted file mode 100644
index 759a0c2..0000000
--- a/load_generator/linux/plugins/org.eclipse.app4mc.slg.linux/xtend-gen/readme.txt
+++ /dev/null
@@ -1 +0,0 @@
-Code generated by Xtend builder.
diff --git a/load_generator/linux/releng/org.eclipse.app4mc.slg.linux.product/Linux_SLG.product b/load_generator/linux/releng/org.eclipse.app4mc.slg.linux.product/Linux_SLG.product
index b052e57..a142732 100644
--- a/load_generator/linux/releng/org.eclipse.app4mc.slg.linux.product/Linux_SLG.product
+++ b/load_generator/linux/releng/org.eclipse.app4mc.slg.linux.product/Linux_SLG.product
@@ -9,7 +9,7 @@
<launcherArgs>
<programArgs>--properties ${workspace_loc:org.eclipse.app4mc.slg.linux.product}/input.properties
</programArgs>
- <vmArgs>-Declipse.ignoreApp=true -Dosgi.noShutdown=true -Dlog4j.configuration=headless_log4j.xml
+ <vmArgs>-Declipse.ignoreApp=true -Dosgi.noShutdown=true -Dorg.eclipse.emf.ecore.EPackage.Registry.INSTANCE=org.eclipse.emf.ecore.impl.EPackageRegistryImpl
</vmArgs>
<vmArgsMac>-XstartOnFirstThread -Dorg.eclipse.swt.internal.carbon.smallFonts
</vmArgsMac>
@@ -29,10 +29,8 @@
<plugins>
<plugin id="com.google.guava"/>
<plugin id="com.google.inject"/>
- <plugin id="com.ibm.icu"/>
<plugin id="javax.inject"/>
<plugin id="javax.xml"/>
- <plugin id="org.apache.commons.cli"/>
<plugin id="org.apache.commons.lang"/>
<plugin id="org.apache.commons.logging"/>
<plugin id="org.apache.commons.math3"/>
@@ -40,68 +38,36 @@
<plugin id="org.apache.felix.gogo.runtime"/>
<plugin id="org.apache.felix.gogo.shell"/>
<plugin id="org.apache.felix.scr"/>
- <plugin id="org.apache.log4j"/>
- <plugin id="org.apache.xerces"/>
- <plugin id="org.apache.xml.resolver"/>
- <plugin id="org.apache.xml.serializer"/>
<plugin id="org.eclipse.app4mc.amalthea.model"/>
<plugin id="org.eclipse.app4mc.slg.commons.m2t"/>
<plugin id="org.eclipse.app4mc.slg.config"/>
<plugin id="org.eclipse.app4mc.slg.linux"/>
<plugin id="org.eclipse.app4mc.transformation"/>
- <plugin id="org.eclipse.app4mc.transformation.log4j.configuration" fragment="true"/>
<plugin id="org.eclipse.app4mc.transformation.starter"/>
- <plugin id="org.eclipse.core.commands"/>
- <plugin id="org.eclipse.core.contenttype"/>
- <plugin id="org.eclipse.core.expressions"/>
- <plugin id="org.eclipse.core.filesystem"/>
- <plugin id="org.eclipse.core.filesystem.linux.ppc64le" fragment="true"/>
- <plugin id="org.eclipse.core.filesystem.linux.x86_64" fragment="true"/>
- <plugin id="org.eclipse.core.filesystem.macosx" fragment="true"/>
- <plugin id="org.eclipse.core.filesystem.win32.x86_64" fragment="true"/>
- <plugin id="org.eclipse.core.jobs"/>
- <plugin id="org.eclipse.core.resources"/>
- <plugin id="org.eclipse.core.resources.win32.x86_64" fragment="true"/>
- <plugin id="org.eclipse.core.runtime"/>
- <plugin id="org.eclipse.emf"/>
+ <plugin id="org.eclipse.app4mc.util.sessionlog"/>
+ <plugin id="org.eclipse.app4mc.util.sessionlog.console"/>
+ <plugin id="org.eclipse.app4mc.util.sessionlog.file"/>
<plugin id="org.eclipse.emf.common"/>
<plugin id="org.eclipse.emf.ecore"/>
- <plugin id="org.eclipse.emf.ecore.change"/>
<plugin id="org.eclipse.emf.ecore.xcore.lib"/>
<plugin id="org.eclipse.emf.ecore.xmi"/>
- <plugin id="org.eclipse.emf.edit"/>
- <plugin id="org.eclipse.emf.transaction"/>
- <plugin id="org.eclipse.emf.validation"/>
- <plugin id="org.eclipse.emf.workspace"/>
- <plugin id="org.eclipse.equinox.app"/>
<plugin id="org.eclipse.equinox.cm"/>
<plugin id="org.eclipse.equinox.common"/>
<plugin id="org.eclipse.equinox.console"/>
<plugin id="org.eclipse.equinox.event"/>
- <plugin id="org.eclipse.equinox.preferences"/>
- <plugin id="org.eclipse.equinox.region" fragment="true"/>
- <plugin id="org.eclipse.equinox.registry"/>
- <plugin id="org.eclipse.equinox.supplement"/>
- <plugin id="org.eclipse.equinox.transforms.hook" fragment="true"/>
- <plugin id="org.eclipse.equinox.weaving.hook" fragment="true"/>
<plugin id="org.eclipse.osgi"/>
- <plugin id="org.eclipse.osgi.compatibility.state" fragment="true"/>
<plugin id="org.eclipse.osgi.services"/>
<plugin id="org.eclipse.osgi.util"/>
- <plugin id="org.eclipse.xtend.lib"/>
- <plugin id="org.eclipse.xtend.lib.macro"/>
- <plugin id="org.eclipse.xtext.logging" fragment="true"/>
<plugin id="org.eclipse.xtext.xbase.lib"/>
- <plugin id="org.jdom"/>
<plugin id="org.slf4j.api"/>
- <plugin id="org.slf4j.impl.log4j12" fragment="true"/>
</plugins>
<configurations>
<plugin id="org.apache.felix.scr" autoStart="true" startLevel="2" />
+ <plugin id="org.eclipse.app4mc.util.sessionlog.console" autoStart="true" startLevel="3" />
+ <plugin id="org.eclipse.app4mc.util.sessionlog.file" autoStart="true" startLevel="3" />
<plugin id="org.eclipse.equinox.cm" autoStart="true" startLevel="2" />
<plugin id="org.eclipse.equinox.event" autoStart="true" startLevel="2" />
- <property name="log4j.configuration" value="headless_log4j.xml" />
</configurations>
<preferencesInfo>
diff --git a/load_generator/linux/releng/org.eclipse.app4mc.slg.linux.target/org.eclipse.app4mc.slg.linux.target.target b/load_generator/linux/releng/org.eclipse.app4mc.slg.linux.target/org.eclipse.app4mc.slg.linux.target.target
index 761287b..eb2c456 100644
--- a/load_generator/linux/releng/org.eclipse.app4mc.slg.linux.target/org.eclipse.app4mc.slg.linux.target.target
+++ b/load_generator/linux/releng/org.eclipse.app4mc.slg.linux.target/org.eclipse.app4mc.slg.linux.target.target
@@ -1,16 +1,13 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<?pde?>
<!-- generated with https://github.com/eclipse-cbi/targetplatform-dsl -->
-<target name="Synthetic Load Generator Linux Target" sequenceNumber="1619009554">
+<target name="Synthetic Load Generator Linux Target" sequenceNumber="1620299879">
<locations>
<location includeMode="slicer" includeAllPlatforms="true" includeSource="true" includeConfigurePhase="false" type="InstallableUnit">
<unit id="org.eclipse.sdk.ide" version="4.14.0.I20191210-0610"/>
<unit id="org.eclipse.emf.ecore.xcore.lib.feature.group" version="1.5.0.v20190401-0856"/>
<unit id="org.eclipse.emf.mwe.core" version="1.5.1.v20191121-1148"/>
<unit id="org.eclipse.emf.sdk.feature.group" version="2.20.0.v20191028-0905"/>
- <unit id="org.eclipse.emf.transaction.feature.group" version="1.12.0.201805140824"/>
- <unit id="org.eclipse.emf.validation.feature.group" version="1.12.1.201812070911"/>
- <unit id="org.eclipse.emf.workspace.feature.group" version="1.12.0.201805140824"/>
<unit id="org.eclipse.equinox.sdk.feature.group" version="3.20.0.v20191122-2104"/>
<unit id="org.eclipse.equinox.compendium.sdk.feature.group" version="3.20.0.v20191107-1453"/>
<unit id="org.eclipse.xtext.runtime.feature.group" version="2.20.0.v20191202-1256"/>
@@ -19,29 +16,24 @@
<unit id="org.eclipse.xtext.xbase.lib.feature.group" version="2.20.0.v20191202-0910"/>
<unit id="org.eclipse.xtend.sdk.feature.group" version="2.20.0.v20191202-1256"/>
<unit id="org.eclipse.xpand.sdk.feature.group" version="2.2.0.v201605260315"/>
- <unit id="org.apache.commons.cli" version="1.2.0.v201404270220"/>
<unit id="org.apache.commons.lang" version="2.6.0.v201404270220"/>
- <unit id="org.apache.log4j" version="1.2.15.v201012070815"/>
- <unit id="org.apache.xerces" version="2.9.0.v201101211617"/>
- <unit id="org.apache.xalan" version="2.7.1.v201005080400"/>
- <unit id="org.apache.xml.resolver" version="1.2.0.v201005080400"/>
- <unit id="org.apache.xml.serializer" version="2.7.1.v201005080400"/>
<unit id="javax.xml" version="1.3.4.v201005080400"/>
- <unit id="org.jdom" version="1.1.1.v201101151400"/>
<unit id="org.slf4j.api" version="1.7.2.v20121108-1250"/>
- <unit id="org.slf4j.impl.log4j12" version="1.7.2.v20131105-2200"/>
<unit id="com.google.guava" version="27.1.0.v20190517-1946"/>
<unit id="com.google.inject" version="3.0.0.v201605172100"/>
<repository location="https://download.eclipse.org/releases/2019-12"/>
</location>
<location includeMode="slicer" includeAllPlatforms="true" includeSource="true" includeConfigurePhase="false" type="InstallableUnit">
- <unit id="org.apache.commons.math" version="2.1.0.v201105210652"/>
<unit id="org.apache.commons.math3" version="3.5.0.v20190611-1023"/>
<repository location="https://download.eclipse.org/tools/orbit/downloads/drops/R20191126223242/repository"/>
</location>
<location includeMode="slicer" includeAllPlatforms="true" includeSource="true" includeConfigurePhase="false" type="InstallableUnit">
- <unit id="org.eclipse.app4mc.platform.sdk.feature.group" version="0.0.0"/>
- <repository location="http://download.eclipse.org/app4mc/updatesites/snapshot"/>
+ <unit id="org.eclipse.app4mc.platform.sdk.feature.group" version="1.1.0.202104301043"/>
+ <repository location="https://download.eclipse.org/app4mc/updatesites/releases/1.1.0"/>
+ </location>
+ <location includeMode="slicer" includeAllPlatforms="true" includeSource="true" includeConfigurePhase="false" type="InstallableUnit">
+ <unit id="org.eclipse.app4mc.utils.platform.sdk.feature.group" version="1.1.0.202104300936"/>
+ <repository location="https://download.eclipse.org/app4mc/components/addon/migration/releases/1.1.0/p2repo/"/>
</location>
<location includeMode="slicer" includeAllPlatforms="true" includeSource="true" includeConfigurePhase="false" type="InstallableUnit">
<unit id="org.eclipse.license.feature.group" version="2.0.2.v20181016-2210"/>
@@ -49,8 +41,7 @@
</location>
<location includeMode="slicer" includeAllPlatforms="true" includeSource="true" includeConfigurePhase="false" type="InstallableUnit">
<unit id="org.eclipse.app4mc.transformation.feature.sdk.feature.group" version="0.0.0"/>
- <unit id="org.eclipse.app4mc.transformation.log4j.configuration.feature.feature.group" version="0.0.0"/>
- <repository location="https://download.eclipse.org/app4mc/components/addon/transformation/snapshot/p2repo"/>
+ <repository location="https://download.eclipse.org/app4mc/components/addon/transformation/snapshot/p2repo/"/>
</location>
<location includeMode="slicer" includeAllPlatforms="true" includeSource="true" includeConfigurePhase="false" type="InstallableUnit">
<unit id="org.eclipse.app4mc.slg.commons.m2t.feature.sdk.feature.group" version="0.0.0"/>
diff --git a/load_generator/linux/releng/org.eclipse.app4mc.slg.linux.target/org.eclipse.app4mc.slg.linux.target.tpd b/load_generator/linux/releng/org.eclipse.app4mc.slg.linux.target/org.eclipse.app4mc.slg.linux.target.tpd
index 90701f7..4556898 100644
--- a/load_generator/linux/releng/org.eclipse.app4mc.slg.linux.target/org.eclipse.app4mc.slg.linux.target.tpd
+++ b/load_generator/linux/releng/org.eclipse.app4mc.slg.linux.target/org.eclipse.app4mc.slg.linux.target.tpd
@@ -7,9 +7,6 @@
org.eclipse.emf.ecore.xcore.lib.feature.group
org.eclipse.emf.mwe.core
org.eclipse.emf.sdk.feature.group
- org.eclipse.emf.transaction.feature.group
- org.eclipse.emf.validation.feature.group
- org.eclipse.emf.workspace.feature.group
org.eclipse.equinox.sdk.feature.group
org.eclipse.equinox.compendium.sdk.feature.group
org.eclipse.xtext.runtime.feature.group
@@ -18,42 +15,34 @@
org.eclipse.xtext.xbase.lib.feature.group
org.eclipse.xtend.sdk.feature.group
org.eclipse.xpand.sdk.feature.group
- org.apache.commons.cli
org.apache.commons.lang
- org.apache.log4j
- org.apache.xerces
- org.apache.xalan
- org.apache.xml.resolver
- org.apache.xml.serializer
javax.xml
- org.jdom
// SLF4J
org.slf4j.api [1.7.2,1.7.3)
- org.slf4j.impl.log4j12 [1.7.2,1.7.3)
com.google.guava
com.google.inject
}
location "https://download.eclipse.org/tools/orbit/downloads/drops/R20191126223242/repository" {
- org.apache.commons.math
org.apache.commons.math3
}
-//location "http://download.eclipse.org/app4mc/updatesites/releases/1.1.0"
+location "https://download.eclipse.org/app4mc/updatesites/releases/1.1.0" {
+ org.eclipse.app4mc.platform.sdk.feature.group
+}
-location "http://download.eclipse.org/app4mc/updatesites/snapshot" {
- org.eclipse.app4mc.platform.sdk.feature.group lazy
+location "https://download.eclipse.org/app4mc/components/addon/migration/releases/1.1.0/p2repo/" {
+ org.eclipse.app4mc.utils.platform.sdk.feature.group
}
location "https://download.eclipse.org/cbi/updates/license" {
org.eclipse.license.feature.group
}
-location "https://download.eclipse.org/app4mc/components/addon/transformation/snapshot/p2repo" {
+location "https://download.eclipse.org/app4mc/components/addon/transformation/snapshot/p2repo/" {
org.eclipse.app4mc.transformation.feature.sdk.feature.group lazy
- org.eclipse.app4mc.transformation.log4j.configuration.feature.feature.group lazy
}
location "https://download.eclipse.org/app4mc/components/addon/transformation.slg.commons/snapshot/p2repo" {
diff --git a/load_generator/ros2/plugins/org.eclipse.app4mc.slg.ros2/META-INF/MANIFEST.MF b/load_generator/ros2/plugins/org.eclipse.app4mc.slg.ros2/META-INF/MANIFEST.MF
index e9049e9..556a536 100644
--- a/load_generator/ros2/plugins/org.eclipse.app4mc.slg.ros2/META-INF/MANIFEST.MF
+++ b/load_generator/ros2/plugins/org.eclipse.app4mc.slg.ros2/META-INF/MANIFEST.MF
@@ -7,17 +7,15 @@
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Import-Package: javax.inject;version="1.0.0",
org.eclipse.app4mc.transformation,
- org.eclipse.app4mc.transformation.executiontype,
org.eclipse.app4mc.transformation.transformers,
org.eclipse.app4mc.transformation.util,
+ org.eclipse.app4mc.util.sessionlog;version="1.1.0",
org.osgi.service.component;version="1.4.0",
- org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional,
- org.slf4j;version="1.7.2"
+ org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional
Require-Bundle: com.google.inject;bundle-version="3.0.0",
org.eclipse.app4mc.slg.config;bundle-version="0.1.0",
org.eclipse.app4mc.slg.commons.m2t;bundle-version="0.1.0"
Bundle-ActivationPolicy: lazy
-Service-Component: OSGI-INF/org.eclipse.app4mc.slg.ros2.artefacts.ROS2M2TTransformationConfig.xml,
- OSGI-INF/org.eclipse.app4mc.slg.ros2.artefacts.ROS2GoogleGuiceModuleFactory.xml,
+Service-Component: OSGI-INF/org.eclipse.app4mc.slg.ros2.artefacts.ROS2GoogleGuiceModuleFactory.xml,
OSGI-INF/org.eclipse.app4mc.slg.ros2.artefacts.ROS2RootTransformer.xml,
OSGI-INF/org.eclipse.app4mc.slg.ros2.artefacts.ROS2SLGTransformationDefinition.xml
diff --git a/load_generator/ros2/plugins/org.eclipse.app4mc.slg.ros2/OSGI-INF/org.eclipse.app4mc.slg.ros2.artefacts.ROS2M2TTransformationConfig.xml b/load_generator/ros2/plugins/org.eclipse.app4mc.slg.ros2/OSGI-INF/org.eclipse.app4mc.slg.ros2.artefacts.ROS2M2TTransformationConfig.xml
deleted file mode 100644
index 1133ca2..0000000
--- a/load_generator/ros2/plugins/org.eclipse.app4mc.slg.ros2/OSGI-INF/org.eclipse.app4mc.slg.ros2.artefacts.ROS2M2TTransformationConfig.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.2.0" activate="activate" configuration-pid="TRANSFORMATION_SESSION_CONFIG" configuration-policy="require" name="org.eclipse.app4mc.slg.ros2.artefacts.ROS2M2TTransformationConfig">
- <property name="transformation" value="ROS2_SLG"/>
- <service>
- <provide interface="org.eclipse.app4mc.transformation.executiontype.IModelToTextConfig"/>
- </service>
- <implementation class="org.eclipse.app4mc.slg.ros2.artefacts.ROS2M2TTransformationConfig"/>
-</scr:component>
\ No newline at end of file
diff --git a/load_generator/ros2/plugins/org.eclipse.app4mc.slg.ros2/src/org/eclipse/app4mc/slg/ros2/artefacts/ROS2GoogleGuiceModule.java b/load_generator/ros2/plugins/org.eclipse.app4mc.slg.ros2/src/org/eclipse/app4mc/slg/ros2/artefacts/ROS2GoogleGuiceModule.java
index 42a56c3..d136b38 100644
--- a/load_generator/ros2/plugins/org.eclipse.app4mc.slg.ros2/src/org/eclipse/app4mc/slg/ros2/artefacts/ROS2GoogleGuiceModule.java
+++ b/load_generator/ros2/plugins/org.eclipse.app4mc.slg.ros2/src/org/eclipse/app4mc/slg/ros2/artefacts/ROS2GoogleGuiceModule.java
@@ -24,19 +24,22 @@
import org.eclipse.app4mc.slg.ros2.transformers.sw.RosLabelTransformer;
import org.eclipse.app4mc.slg.ros2.transformers.sw.RosRunnableTransformer;
import org.eclipse.app4mc.slg.ros2.transformers.sw.RosTaskTransformer;
+import org.eclipse.app4mc.transformation.util.TransformationGuiceModule;
+import org.eclipse.app4mc.util.sessionlog.SessionLogger;
-import com.google.inject.AbstractModule;
-
-public class ROS2GoogleGuiceModule extends AbstractModule {
+public class ROS2GoogleGuiceModule extends TransformationGuiceModule {
protected Properties properties;
- public ROS2GoogleGuiceModule(Properties properties) {
+ public ROS2GoogleGuiceModule(SessionLogger logger, Properties properties) {
+ super(logger);
this.properties = properties;
}
@Override
protected void configure() {
+ super.configure();
+
bind(Properties.class).toInstance(this.properties);
bind(CustomObjectsStore.class).toInstance(new CustomObjectsStore());
diff --git a/load_generator/ros2/plugins/org.eclipse.app4mc.slg.ros2/src/org/eclipse/app4mc/slg/ros2/artefacts/ROS2GoogleGuiceModuleFactory.java b/load_generator/ros2/plugins/org.eclipse.app4mc.slg.ros2/src/org/eclipse/app4mc/slg/ros2/artefacts/ROS2GoogleGuiceModuleFactory.java
index 9cb304d..969587f 100644
--- a/load_generator/ros2/plugins/org.eclipse.app4mc.slg.ros2/src/org/eclipse/app4mc/slg/ros2/artefacts/ROS2GoogleGuiceModuleFactory.java
+++ b/load_generator/ros2/plugins/org.eclipse.app4mc.slg.ros2/src/org/eclipse/app4mc/slg/ros2/artefacts/ROS2GoogleGuiceModuleFactory.java
@@ -16,6 +16,7 @@
import java.util.Properties;
import org.eclipse.app4mc.transformation.ServiceConstants;
+import org.eclipse.app4mc.util.sessionlog.SessionLogger;
import org.osgi.service.component.annotations.Component;
import org.osgi.service.component.annotations.ConfigurationPolicy;
@@ -23,11 +24,10 @@
configurationPid = ServiceConstants.SESSION_CONFIGURATION_PID,
configurationPolicy = ConfigurationPolicy.REQUIRE,
service = ROS2GoogleGuiceModuleFactory.class)
-
public class ROS2GoogleGuiceModuleFactory {
- public ROS2GoogleGuiceModule getModule(Properties properties) {
- return new ROS2GoogleGuiceModule(properties);
+ public ROS2GoogleGuiceModule getModule(SessionLogger logger, Properties properties) {
+ return new ROS2GoogleGuiceModule(logger, properties);
}
}
diff --git a/load_generator/ros2/plugins/org.eclipse.app4mc.slg.ros2/src/org/eclipse/app4mc/slg/ros2/artefacts/ROS2M2TTransformationConfig.java b/load_generator/ros2/plugins/org.eclipse.app4mc.slg.ros2/src/org/eclipse/app4mc/slg/ros2/artefacts/ROS2M2TTransformationConfig.java
deleted file mode 100644
index ed6278b..0000000
--- a/load_generator/ros2/plugins/org.eclipse.app4mc.slg.ros2/src/org/eclipse/app4mc/slg/ros2/artefacts/ROS2M2TTransformationConfig.java
+++ /dev/null
@@ -1,38 +0,0 @@
-/**
- * Copyright (c) 2020-2021 Robert Bosch GmbH.
- *
- * This program and the accompanying materials are made
- * available under the terms of the Eclipse Public License 2.0
- * which is available at https://www.eclipse.org/legal/epl-2.0/
- *
- * SPDX-License-Identifier: EPL-2.0
- *
- * Contributors:
- * Robert Bosch GmbH - initial API and implementation
- */
-
-package org.eclipse.app4mc.slg.ros2.artefacts;
-
-import java.util.Map;
-
-import org.eclipse.app4mc.slg.commons.m2t.M2TTransformationConfig;
-import org.eclipse.app4mc.transformation.ServiceConstants;
-import org.eclipse.app4mc.transformation.executiontype.IModelToTextConfig;
-import org.osgi.service.component.annotations.Activate;
-import org.osgi.service.component.annotations.Component;
-import org.osgi.service.component.annotations.ConfigurationPolicy;
-
-@Component(
- configurationPid = ServiceConstants.SESSION_CONFIGURATION_PID,
- configurationPolicy = ConfigurationPolicy.REQUIRE,
- property = { "transformation=ROS2_SLG" },
- service = IModelToTextConfig.class)
-
-public class ROS2M2TTransformationConfig extends M2TTransformationConfig {
-
- @Activate
- void activate(Map<String, ?> properties) {
- folderPath = (String) properties.get("input_models_folder");
- }
-
-}
diff --git a/load_generator/ros2/plugins/org.eclipse.app4mc.slg.ros2/src/org/eclipse/app4mc/slg/ros2/artefacts/ROS2RootTransformer.java b/load_generator/ros2/plugins/org.eclipse.app4mc.slg.ros2/src/org/eclipse/app4mc/slg/ros2/artefacts/ROS2RootTransformer.java
index a2c3b4e..88cd4c3 100644
--- a/load_generator/ros2/plugins/org.eclipse.app4mc.slg.ros2/src/org/eclipse/app4mc/slg/ros2/artefacts/ROS2RootTransformer.java
+++ b/load_generator/ros2/plugins/org.eclipse.app4mc.slg.ros2/src/org/eclipse/app4mc/slg/ros2/artefacts/ROS2RootTransformer.java
@@ -23,13 +23,10 @@
import org.eclipse.app4mc.transformation.ServiceConstants;
import org.eclipse.app4mc.transformation.TransformationConstants;
import org.eclipse.app4mc.transformation.transformers.Model2TextRootTransformer;
-import org.eclipse.emf.ecore.resource.ResourceSet;
import org.osgi.service.component.annotations.Activate;
import org.osgi.service.component.annotations.Component;
import org.osgi.service.component.annotations.ConfigurationPolicy;
import org.osgi.service.component.annotations.Reference;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
import com.google.inject.Guice;
import com.google.inject.Injector;
@@ -42,37 +39,38 @@
public class ROS2RootTransformer extends Model2TextRootTransformer {
- private static final Logger LOG = LoggerFactory.getLogger(ROS2RootTransformer.class);
-
@Reference
private ROS2GoogleGuiceModuleFactory moduleFactory;
Properties properties;
@Activate
- void activate(Map<String, ?> properties) {
- LOG.debug("LinuxRootTransformer activated : {}", this.hashCode());
-
+ @Override
+ protected void activate(Map<String, ?> properties) {
+ super.activate(properties);
this.properties = new Properties();
this.properties.putAll(properties);
+
+ // set the output directory to the local properties
+ this.properties.put(TransformationConstants.TRANSFORMATION_OUTPUT_FOLDER, getOutputFolder());
}
@Override
- public void m2tTransformation(ResourceSet inputResourceSet) {
+ public void m2tTransformation() {
- Injector injector = Guice.createInjector(moduleFactory.getModule(properties));
+ Injector injector = Guice.createInjector(moduleFactory.getModule(logger, properties));
RosModel2TextTransformer instance = injector.getInstance(RosModel2TextTransformer.class);
harmonizeSLGParams(properties);
- instance.m2tTransformation(inputResourceSet);
+ instance.m2tTransformation(getInputResourceSet(getInputFolder(), logger));
}
private void harmonizeSLGParams(Properties props) {
if (!props.containsKey("configurationFile")) {
- LOG.error("'configurationFile' property not set in the input properties file");
+ logger.error("'configurationFile' property not set in the input properties file");
throw new IllegalArgumentException("'configurationFile' property not set in the input properties file");
}
diff --git a/load_generator/ros2/plugins/org.eclipse.app4mc.slg.ros2/src/org/eclipse/app4mc/slg/ros2/artefacts/ROS2SLGTransformationDefinition.java b/load_generator/ros2/plugins/org.eclipse.app4mc.slg.ros2/src/org/eclipse/app4mc/slg/ros2/artefacts/ROS2SLGTransformationDefinition.java
index 78582df..b80265f 100644
--- a/load_generator/ros2/plugins/org.eclipse.app4mc.slg.ros2/src/org/eclipse/app4mc/slg/ros2/artefacts/ROS2SLGTransformationDefinition.java
+++ b/load_generator/ros2/plugins/org.eclipse.app4mc.slg.ros2/src/org/eclipse/app4mc/slg/ros2/artefacts/ROS2SLGTransformationDefinition.java
@@ -15,6 +15,10 @@
package org.eclipse.app4mc.slg.ros2.artefacts;
+import java.io.File;
+import java.util.Arrays;
+import java.util.List;
+
import org.eclipse.app4mc.transformation.TransformationDefinition;
import org.osgi.service.component.annotations.Component;
@@ -41,4 +45,10 @@
return "ROS2_SLG";
}
+ @Override
+ public List<TransformationParameter> getTransformationParameter() {
+ return Arrays.asList(
+ new TransformationParameter("SLG Settings", "configurationFile", "Configuration Model", File.class));
+ }
+
}
diff --git a/load_generator/ros2/plugins/org.eclipse.app4mc.slg.ros2/xtend-gen/readme.txt b/load_generator/ros2/plugins/org.eclipse.app4mc.slg.ros2/xtend-gen/readme.txt
deleted file mode 100644
index 759a0c2..0000000
--- a/load_generator/ros2/plugins/org.eclipse.app4mc.slg.ros2/xtend-gen/readme.txt
+++ /dev/null
@@ -1 +0,0 @@
-Code generated by Xtend builder.
diff --git a/load_generator/ros2/releng/org.eclipse.app4mc.slg.ros2.product/ROS2_SLG.product b/load_generator/ros2/releng/org.eclipse.app4mc.slg.ros2.product/ROS2_SLG.product
index 9111986..9bf8ab3 100644
--- a/load_generator/ros2/releng/org.eclipse.app4mc.slg.ros2.product/ROS2_SLG.product
+++ b/load_generator/ros2/releng/org.eclipse.app4mc.slg.ros2.product/ROS2_SLG.product
@@ -3,14 +3,13 @@
<product uid="org.eclipse.app4mc.slg.ros2.product" application="org.eclipse.app4mc.amlt2systemc.app.application" version="1.1.0.qualifier" useFeatures="false" includeLaunchers="true">
-
<configIni use="default">
</configIni>
<launcherArgs>
<programArgs>--properties ${workspace_loc:org.eclipse.app4mc.slg.ros2.product}/input.properties"
</programArgs>
- <vmArgs>-Declipse.ignoreApp=true -Dosgi.noShutdown=true -Dlog4j.configuration=headless_log4j.xml
+ <vmArgs>-Declipse.ignoreApp=true -Dosgi.noShutdown=true -Dorg.eclipse.emf.ecore.EPackage.Registry.INSTANCE=org.eclipse.emf.ecore.impl.EPackageRegistryImpl
</vmArgs>
<vmArgsMac>-XstartOnFirstThread -Dorg.eclipse.swt.internal.carbon.smallFonts
</vmArgsMac>
@@ -18,24 +17,20 @@
<windowImages/>
-
<launcher>
<win useIco="false">
<bmp/>
</win>
</launcher>
-
<vm>
</vm>
<plugins>
<plugin id="com.google.guava"/>
<plugin id="com.google.inject"/>
- <plugin id="com.ibm.icu"/>
<plugin id="javax.inject"/>
<plugin id="javax.xml"/>
- <plugin id="org.apache.commons.cli"/>
<plugin id="org.apache.commons.lang"/>
<plugin id="org.apache.commons.logging"/>
<plugin id="org.apache.commons.math3"/>
@@ -43,68 +38,36 @@
<plugin id="org.apache.felix.gogo.runtime"/>
<plugin id="org.apache.felix.gogo.shell"/>
<plugin id="org.apache.felix.scr"/>
- <plugin id="org.apache.log4j"/>
- <plugin id="org.apache.xerces"/>
- <plugin id="org.apache.xml.resolver"/>
- <plugin id="org.apache.xml.serializer"/>
<plugin id="org.eclipse.app4mc.amalthea.model"/>
<plugin id="org.eclipse.app4mc.slg.commons.m2t"/>
<plugin id="org.eclipse.app4mc.slg.config"/>
<plugin id="org.eclipse.app4mc.slg.ros2"/>
<plugin id="org.eclipse.app4mc.transformation"/>
- <plugin id="org.eclipse.app4mc.transformation.log4j.configuration" fragment="true"/>
<plugin id="org.eclipse.app4mc.transformation.starter"/>
- <plugin id="org.eclipse.core.commands"/>
- <plugin id="org.eclipse.core.contenttype"/>
- <plugin id="org.eclipse.core.expressions"/>
- <plugin id="org.eclipse.core.filesystem"/>
- <plugin id="org.eclipse.core.filesystem.linux.ppc64le" fragment="true"/>
- <plugin id="org.eclipse.core.filesystem.linux.x86_64" fragment="true"/>
- <plugin id="org.eclipse.core.filesystem.macosx" fragment="true"/>
- <plugin id="org.eclipse.core.filesystem.win32.x86_64" fragment="true"/>
- <plugin id="org.eclipse.core.jobs"/>
- <plugin id="org.eclipse.core.resources"/>
- <plugin id="org.eclipse.core.resources.win32.x86_64" fragment="true"/>
- <plugin id="org.eclipse.core.runtime"/>
- <plugin id="org.eclipse.emf"/>
+ <plugin id="org.eclipse.app4mc.util.sessionlog"/>
+ <plugin id="org.eclipse.app4mc.util.sessionlog.console"/>
+ <plugin id="org.eclipse.app4mc.util.sessionlog.file"/>
<plugin id="org.eclipse.emf.common"/>
<plugin id="org.eclipse.emf.ecore"/>
- <plugin id="org.eclipse.emf.ecore.change"/>
<plugin id="org.eclipse.emf.ecore.xcore.lib"/>
<plugin id="org.eclipse.emf.ecore.xmi"/>
- <plugin id="org.eclipse.emf.edit"/>
- <plugin id="org.eclipse.emf.transaction"/>
- <plugin id="org.eclipse.emf.validation"/>
- <plugin id="org.eclipse.emf.workspace"/>
- <plugin id="org.eclipse.equinox.app"/>
<plugin id="org.eclipse.equinox.cm"/>
<plugin id="org.eclipse.equinox.common"/>
<plugin id="org.eclipse.equinox.console"/>
<plugin id="org.eclipse.equinox.event"/>
- <plugin id="org.eclipse.equinox.preferences"/>
- <plugin id="org.eclipse.equinox.region" fragment="true"/>
- <plugin id="org.eclipse.equinox.registry"/>
- <plugin id="org.eclipse.equinox.supplement"/>
- <plugin id="org.eclipse.equinox.transforms.hook" fragment="true"/>
- <plugin id="org.eclipse.equinox.weaving.hook" fragment="true"/>
<plugin id="org.eclipse.osgi"/>
- <plugin id="org.eclipse.osgi.compatibility.state" fragment="true"/>
<plugin id="org.eclipse.osgi.services"/>
<plugin id="org.eclipse.osgi.util"/>
- <plugin id="org.eclipse.xtend.lib"/>
- <plugin id="org.eclipse.xtend.lib.macro"/>
- <plugin id="org.eclipse.xtext.logging" fragment="true"/>
<plugin id="org.eclipse.xtext.xbase.lib"/>
- <plugin id="org.jdom"/>
<plugin id="org.slf4j.api"/>
- <plugin id="org.slf4j.impl.log4j12" fragment="true"/>
</plugins>
<configurations>
<plugin id="org.apache.felix.scr" autoStart="true" startLevel="2" />
+ <plugin id="org.eclipse.app4mc.util.sessionlog.console" autoStart="true" startLevel="3" />
+ <plugin id="org.eclipse.app4mc.util.sessionlog.file" autoStart="true" startLevel="3" />
<plugin id="org.eclipse.equinox.cm" autoStart="true" startLevel="2" />
<plugin id="org.eclipse.equinox.event" autoStart="true" startLevel="2" />
- <property name="log4j.configuration" value="headless_log4j.xml" />
</configurations>
<preferencesInfo>
diff --git a/load_generator/ros2/releng/org.eclipse.app4mc.slg.ros2.target/org.eclipse.app4mc.slg.ros2.target.target b/load_generator/ros2/releng/org.eclipse.app4mc.slg.ros2.target/org.eclipse.app4mc.slg.ros2.target.target
index 434c244..3052a5d 100644
--- a/load_generator/ros2/releng/org.eclipse.app4mc.slg.ros2.target/org.eclipse.app4mc.slg.ros2.target.target
+++ b/load_generator/ros2/releng/org.eclipse.app4mc.slg.ros2.target/org.eclipse.app4mc.slg.ros2.target.target
@@ -1,16 +1,13 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<?pde?>
<!-- generated with https://github.com/eclipse-cbi/targetplatform-dsl -->
-<target name="Synthetic Load Generator ROS2 Target" sequenceNumber="1619009657">
+<target name="Synthetic Load Generator ROS2 Target" sequenceNumber="1620299918">
<locations>
<location includeMode="slicer" includeAllPlatforms="true" includeSource="true" includeConfigurePhase="false" type="InstallableUnit">
<unit id="org.eclipse.sdk.ide" version="4.14.0.I20191210-0610"/>
<unit id="org.eclipse.emf.ecore.xcore.lib.feature.group" version="1.5.0.v20190401-0856"/>
<unit id="org.eclipse.emf.mwe.core" version="1.5.1.v20191121-1148"/>
<unit id="org.eclipse.emf.sdk.feature.group" version="2.20.0.v20191028-0905"/>
- <unit id="org.eclipse.emf.transaction.feature.group" version="1.12.0.201805140824"/>
- <unit id="org.eclipse.emf.validation.feature.group" version="1.12.1.201812070911"/>
- <unit id="org.eclipse.emf.workspace.feature.group" version="1.12.0.201805140824"/>
<unit id="org.eclipse.equinox.sdk.feature.group" version="3.20.0.v20191122-2104"/>
<unit id="org.eclipse.equinox.compendium.sdk.feature.group" version="3.20.0.v20191107-1453"/>
<unit id="org.eclipse.xtext.runtime.feature.group" version="2.20.0.v20191202-1256"/>
@@ -19,29 +16,24 @@
<unit id="org.eclipse.xtext.xbase.lib.feature.group" version="2.20.0.v20191202-0910"/>
<unit id="org.eclipse.xtend.sdk.feature.group" version="2.20.0.v20191202-1256"/>
<unit id="org.eclipse.xpand.sdk.feature.group" version="2.2.0.v201605260315"/>
- <unit id="org.apache.commons.cli" version="1.2.0.v201404270220"/>
<unit id="org.apache.commons.lang" version="2.6.0.v201404270220"/>
- <unit id="org.apache.log4j" version="1.2.15.v201012070815"/>
- <unit id="org.apache.xerces" version="2.9.0.v201101211617"/>
- <unit id="org.apache.xalan" version="2.7.1.v201005080400"/>
- <unit id="org.apache.xml.resolver" version="1.2.0.v201005080400"/>
- <unit id="org.apache.xml.serializer" version="2.7.1.v201005080400"/>
<unit id="javax.xml" version="1.3.4.v201005080400"/>
- <unit id="org.jdom" version="1.1.1.v201101151400"/>
<unit id="org.slf4j.api" version="1.7.2.v20121108-1250"/>
- <unit id="org.slf4j.impl.log4j12" version="1.7.2.v20131105-2200"/>
<unit id="com.google.guava" version="27.1.0.v20190517-1946"/>
<unit id="com.google.inject" version="3.0.0.v201605172100"/>
<repository location="https://download.eclipse.org/releases/2019-12"/>
</location>
<location includeMode="slicer" includeAllPlatforms="true" includeSource="true" includeConfigurePhase="false" type="InstallableUnit">
- <unit id="org.apache.commons.math" version="2.1.0.v201105210652"/>
<unit id="org.apache.commons.math3" version="3.5.0.v20190611-1023"/>
<repository location="https://download.eclipse.org/tools/orbit/downloads/drops/R20191126223242/repository"/>
</location>
<location includeMode="slicer" includeAllPlatforms="true" includeSource="true" includeConfigurePhase="false" type="InstallableUnit">
- <unit id="org.eclipse.app4mc.platform.sdk.feature.group" version="0.0.0"/>
- <repository location="http://download.eclipse.org/app4mc/updatesites/snapshot"/>
+ <unit id="org.eclipse.app4mc.platform.sdk.feature.group" version="1.1.0.202104301043"/>
+ <repository location="https://download.eclipse.org/app4mc/updatesites/releases/1.1.0"/>
+ </location>
+ <location includeMode="slicer" includeAllPlatforms="true" includeSource="true" includeConfigurePhase="false" type="InstallableUnit">
+ <unit id="org.eclipse.app4mc.utils.platform.sdk.feature.group" version="1.1.0.202104300936"/>
+ <repository location="https://download.eclipse.org/app4mc/components/addon/migration/releases/1.1.0/p2repo/"/>
</location>
<location includeMode="slicer" includeAllPlatforms="true" includeSource="true" includeConfigurePhase="false" type="InstallableUnit">
<unit id="org.eclipse.license.feature.group" version="2.0.2.v20181016-2210"/>
@@ -49,8 +41,7 @@
</location>
<location includeMode="slicer" includeAllPlatforms="true" includeSource="true" includeConfigurePhase="false" type="InstallableUnit">
<unit id="org.eclipse.app4mc.transformation.feature.sdk.feature.group" version="0.0.0"/>
- <unit id="org.eclipse.app4mc.transformation.log4j.configuration.feature.feature.group" version="0.0.0"/>
- <repository location="https://download.eclipse.org/app4mc/components/addon/transformation/snapshot/p2repo"/>
+ <repository location="https://download.eclipse.org/app4mc/components/addon/transformation/snapshot/p2repo/"/>
</location>
<location includeMode="slicer" includeAllPlatforms="true" includeSource="true" includeConfigurePhase="false" type="InstallableUnit">
<unit id="org.eclipse.app4mc.slg.commons.m2t.feature.sdk.feature.group" version="0.0.0"/>
diff --git a/load_generator/ros2/releng/org.eclipse.app4mc.slg.ros2.target/org.eclipse.app4mc.slg.ros2.target.tpd b/load_generator/ros2/releng/org.eclipse.app4mc.slg.ros2.target/org.eclipse.app4mc.slg.ros2.target.tpd
index d6e6318..1a4b4c0 100644
--- a/load_generator/ros2/releng/org.eclipse.app4mc.slg.ros2.target/org.eclipse.app4mc.slg.ros2.target.tpd
+++ b/load_generator/ros2/releng/org.eclipse.app4mc.slg.ros2.target/org.eclipse.app4mc.slg.ros2.target.tpd
@@ -7,9 +7,6 @@
org.eclipse.emf.ecore.xcore.lib.feature.group
org.eclipse.emf.mwe.core
org.eclipse.emf.sdk.feature.group
- org.eclipse.emf.transaction.feature.group
- org.eclipse.emf.validation.feature.group
- org.eclipse.emf.workspace.feature.group
org.eclipse.equinox.sdk.feature.group
org.eclipse.equinox.compendium.sdk.feature.group
org.eclipse.xtext.runtime.feature.group
@@ -18,42 +15,34 @@
org.eclipse.xtext.xbase.lib.feature.group
org.eclipse.xtend.sdk.feature.group
org.eclipse.xpand.sdk.feature.group
- org.apache.commons.cli
org.apache.commons.lang
- org.apache.log4j
- org.apache.xerces
- org.apache.xalan
- org.apache.xml.resolver
- org.apache.xml.serializer
javax.xml
- org.jdom
// SLF4J
org.slf4j.api [1.7.2,1.7.3)
- org.slf4j.impl.log4j12 [1.7.2,1.7.3)
com.google.guava
com.google.inject
}
location "https://download.eclipse.org/tools/orbit/downloads/drops/R20191126223242/repository" {
- org.apache.commons.math
org.apache.commons.math3
}
-//location "http://download.eclipse.org/app4mc/updatesites/releases/1.1.0"
+location "https://download.eclipse.org/app4mc/updatesites/releases/1.1.0" {
+ org.eclipse.app4mc.platform.sdk.feature.group
+}
-location "http://download.eclipse.org/app4mc/updatesites/snapshot" {
- org.eclipse.app4mc.platform.sdk.feature.group lazy
+location "https://download.eclipse.org/app4mc/components/addon/migration/releases/1.1.0/p2repo/" {
+ org.eclipse.app4mc.utils.platform.sdk.feature.group
}
location "https://download.eclipse.org/cbi/updates/license" {
org.eclipse.license.feature.group
}
-location "https://download.eclipse.org/app4mc/components/addon/transformation/snapshot/p2repo" {
+location "https://download.eclipse.org/app4mc/components/addon/transformation/snapshot/p2repo/" {
org.eclipse.app4mc.transformation.feature.sdk.feature.group lazy
- org.eclipse.app4mc.transformation.log4j.configuration.feature.feature.group lazy
}
location "https://download.eclipse.org/app4mc/components/addon/transformation.slg.commons/snapshot/p2repo" {
diff --git a/simulation_generator/app4mc.sim/Dockerfile b/simulation_generator/app4mc.sim/Dockerfile
new file mode 100644
index 0000000..3179e1c
--- /dev/null
+++ b/simulation_generator/app4mc.sim/Dockerfile
@@ -0,0 +1,14 @@
+# checkout the develop branch of APP4MC Transformation
+FROM alpine/git as clone-stage
+WORKDIR /app
+RUN git clone --branch develop --single-branch https://git.eclipse.org/r/app4mc/org.eclipse.app4mc.addon.transformation.git
+
+# build via Maven
+FROM maven:3.6.3-openjdk-11 as build-stage
+WORKDIR /app
+COPY --from=clone-stage /app/org.eclipse.app4mc.addon.transformation/simulation_generator/app4mc.sim /app
+RUN mvn verify
+
+FROM scratch AS export-stage
+COPY --from=build-stage /app/releng/org.eclipse.app4mc.amlt2systemc.product/target/products/org.eclipse.app4mc.amlt2systemc.product-linux.gtk.x86_64.zip /
+
diff --git a/simulation_generator/app4mc.sim/features/org.eclipse.app4mc.amlt2systemc.feature/feature.xml b/simulation_generator/app4mc.sim/features/org.eclipse.app4mc.amlt2systemc.feature/feature.xml
index d247517..bd3c067 100644
--- a/simulation_generator/app4mc.sim/features/org.eclipse.app4mc.amlt2systemc.feature/feature.xml
+++ b/simulation_generator/app4mc.sim/features/org.eclipse.app4mc.amlt2systemc.feature/feature.xml
@@ -18,7 +18,7 @@
<requires>
<import plugin="org.eclipse.app4mc.amalthea.model"/>
- <import feature="org.eclipse.app4mc.transformation.feature" version="0.1.0.qualifier"/>
+ <import feature="org.eclipse.app4mc.transformation.feature" version="1.1.0"/>
</requires>
<plugin
diff --git a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t.cust/META-INF/MANIFEST.MF b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t.cust/META-INF/MANIFEST.MF
index 32e0f92..60e328f 100644
--- a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t.cust/META-INF/MANIFEST.MF
+++ b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t.cust/META-INF/MANIFEST.MF
@@ -7,15 +7,14 @@
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
Import-Package: javax.inject;version="1.0.0",
org.eclipse.app4mc.transformation,
- org.eclipse.app4mc.transformation.executiontype,
org.eclipse.app4mc.transformation.starter,
org.eclipse.app4mc.transformation.transformers,
+ org.eclipse.app4mc.util.sessionlog;version="1.1.0",
org.osgi.service.component;version="1.4.0",
org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional,
org.slf4j;version="1.7.2"
Bundle-ActivationPolicy: lazy
Require-Bundle: com.google.inject;bundle-version="3.0.0",
- org.apache.log4j;bundle-version="1.2.15",
org.eclipse.emf;bundle-version="2.6.0",
org.eclipse.app4mc.amalthea.model;visibility:=reexport,
org.eclipse.app4mc.transformation,
diff --git a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t.cust/src/org/eclipse/app4mc/amlt2systemc/m2t/cust/module/CustSystemCGuiceModule.java b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t.cust/src/org/eclipse/app4mc/amlt2systemc/m2t/cust/module/CustSystemCGuiceModule.java
index 67f9155..2b8bf95 100644
--- a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t.cust/src/org/eclipse/app4mc/amlt2systemc/m2t/cust/module/CustSystemCGuiceModule.java
+++ b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t.cust/src/org/eclipse/app4mc/amlt2systemc/m2t/cust/module/CustSystemCGuiceModule.java
@@ -1,6 +1,6 @@
/**
********************************************************************************
- * Copyright (c) 2020 Robert Bosch GmbH.
+ * Copyright (c) 2020, 2021 Robert Bosch GmbH.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
@@ -20,11 +20,12 @@
import org.eclipse.app4mc.amlt2systemc.m2t.SystemCGuiceModule;
import org.eclipse.app4mc.amlt2systemc.m2t.cust.transformers.CustMemoryTransformer;
import org.eclipse.app4mc.amlt2systemc.m2t.transformers.hw.MemoryTransformer;
+import org.eclipse.app4mc.util.sessionlog.SessionLogger;
public class CustSystemCGuiceModule extends SystemCGuiceModule {
- public CustSystemCGuiceModule(Properties properties) {
- super(properties);
+ public CustSystemCGuiceModule(SessionLogger logger, Properties properties) {
+ super(logger, properties);
}
@Override
diff --git a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t.cust/src/org/eclipse/app4mc/amlt2systemc/m2t/cust/module/CustSystemCGuiceModuleFactory.java b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t.cust/src/org/eclipse/app4mc/amlt2systemc/m2t/cust/module/CustSystemCGuiceModuleFactory.java
index efb4492..9d8d83d 100644
--- a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t.cust/src/org/eclipse/app4mc/amlt2systemc/m2t/cust/module/CustSystemCGuiceModuleFactory.java
+++ b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t.cust/src/org/eclipse/app4mc/amlt2systemc/m2t/cust/module/CustSystemCGuiceModuleFactory.java
@@ -1,6 +1,6 @@
/**
********************************************************************************
- * Copyright (c) 2020 Robert Bosch GmbH.
+ * Copyright (c) 2020, 2021 Robert Bosch GmbH.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
@@ -19,6 +19,7 @@
import org.eclipse.app4mc.amlt2systemc.m2t.SystemCGuiceModule;
import org.eclipse.app4mc.amlt2systemc.m2t.SystemCGuiceModuleFactory;
+import org.eclipse.app4mc.util.sessionlog.SessionLogger;
import org.osgi.service.component.annotations.Component;
@Component(
@@ -28,8 +29,8 @@
public class CustSystemCGuiceModuleFactory extends SystemCGuiceModuleFactory {
@Override
- public SystemCGuiceModule getModule(Properties properties) {
- return new CustSystemCGuiceModule(properties);
+ public SystemCGuiceModule getModule(SessionLogger logger, Properties properties) {
+ return new CustSystemCGuiceModule(logger,properties);
}
}
diff --git a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/META-INF/MANIFEST.MF b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/META-INF/MANIFEST.MF
index 7abdef4..7d9da19 100644
--- a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/META-INF/MANIFEST.MF
+++ b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/META-INF/MANIFEST.MF
@@ -9,14 +9,12 @@
org.eclipse.app4mc.amalthea.model;bundle-version="1.0.0"
Import-Package: javax.inject;version="1.0.0",
org.eclipse.app4mc.transformation,
- org.eclipse.app4mc.transformation.executiontype,
org.eclipse.app4mc.transformation.transformers,
org.eclipse.app4mc.transformation.util,
+ org.eclipse.app4mc.util.sessionlog;version="1.1.0",
org.osgi.service.component;version="1.4.0",
- org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional,
- org.slf4j;version="1.7.2"
+ org.osgi.service.component.annotations;version="[1.3.0,2.0.0)";resolution:=optional
Export-Package: org.eclipse.app4mc.amlt2systemc.m2t,
- org.eclipse.app4mc.amlt2systemc.m2t.config,
org.eclipse.app4mc.amlt2systemc.m2t.module,
org.eclipse.app4mc.amlt2systemc.m2t.transformers,
org.eclipse.app4mc.amlt2systemc.m2t.transformers.hw,
@@ -29,5 +27,4 @@
Automatic-Module-Name: org.eclipse.app4mc.amlt2systemc.m2t
Service-Component: OSGI-INF/org.eclipse.app4mc.amlt2systemc.m2t.SystemCGuiceModuleFactory.xml,
OSGI-INF/org.eclipse.app4mc.amlt2systemc.m2t.APP4MCsimTransformationDefinition.xml,
- OSGI-INF/org.eclipse.app4mc.amlt2systemc.m2t.M2TTransformationConfig.xml,
OSGI-INF/org.eclipse.app4mc.amlt2systemc.m2t.SystemCRootTransformer.xml
diff --git a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/OSGI-INF/org.eclipse.app4mc.amlt2systemc.m2t.M2TTransformationConfig.xml b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/OSGI-INF/org.eclipse.app4mc.amlt2systemc.m2t.M2TTransformationConfig.xml
deleted file mode 100644
index 5803607..0000000
--- a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/OSGI-INF/org.eclipse.app4mc.amlt2systemc.m2t.M2TTransformationConfig.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<scr:component xmlns:scr="http://www.osgi.org/xmlns/scr/v1.2.0" activate="activate" configuration-pid="TRANSFORMATION_SESSION_CONFIG" configuration-policy="require" name="org.eclipse.app4mc.amlt2systemc.m2t.M2TTransformationConfig">
- <property name="transformation" value="APP4MCSIM"/>
- <service>
- <provide interface="org.eclipse.app4mc.transformation.executiontype.IModelToTextConfig"/>
- </service>
- <implementation class="org.eclipse.app4mc.amlt2systemc.m2t.M2TTransformationConfig"/>
-</scr:component>
\ No newline at end of file
diff --git a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/APP4MCsimTransformationDefinition.java b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/APP4MCsimTransformationDefinition.java
index 24fed57..7e9b29d 100644
--- a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/APP4MCsimTransformationDefinition.java
+++ b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/APP4MCsimTransformationDefinition.java
@@ -15,6 +15,11 @@
package org.eclipse.app4mc.amlt2systemc.m2t;
+import java.io.File;
+import java.util.Arrays;
+import java.util.List;
+
+import org.eclipse.app4mc.amlt2systemc.m2t.module.PropertyKeys;
import org.eclipse.app4mc.transformation.TransformationDefinition;
import org.osgi.service.component.annotations.Component;
@@ -41,4 +46,10 @@
return "APP4MCSIM";
}
+ @Override
+ public List<TransformationParameter> getTransformationParameter() {
+ return Arrays.asList(
+ new TransformationParameter("APP4MCsim Settings", PropertyKeys.APP4MCSIM_FOLDER, "APP4MCsim Folder", File.class));
+ }
+
}
diff --git a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/M2TTransformationConfig.java b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/M2TTransformationConfig.java
deleted file mode 100644
index b0a1ef2..0000000
--- a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/M2TTransformationConfig.java
+++ /dev/null
@@ -1,69 +0,0 @@
-/**
- ********************************************************************************
- * Copyright (c) 2020, 2021 Robert Bosch GmbH.
- *
- * This program and the accompanying materials are made
- * available under the terms of the Eclipse Public License 2.0
- * which is available at https://www.eclipse.org/legal/epl-2.0/
- *
- * SPDX-License-Identifier: EPL-2.0
- *
- * Contributors:
- * Robert Bosch GmbH - initial API and implementation
- ********************************************************************************
- */
-
-package org.eclipse.app4mc.amlt2systemc.m2t;
-
-import java.util.Map;
-
-import org.eclipse.app4mc.amalthea.model.AmaltheaFactory;
-import org.eclipse.app4mc.amalthea.model.io.AmaltheaLoader;
-import org.eclipse.app4mc.amlt2systemc.m2t.module.PropertyKeys;
-import org.eclipse.app4mc.transformation.ServiceConstants;
-import org.eclipse.app4mc.transformation.executiontype.IModelToTextConfig;
-import org.eclipse.emf.ecore.resource.ResourceSet;
-import org.osgi.service.component.annotations.Activate;
-import org.osgi.service.component.annotations.Component;
-import org.osgi.service.component.annotations.ConfigurationPolicy;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
-@Component(
- configurationPid = ServiceConstants.SESSION_CONFIGURATION_PID,
- configurationPolicy = ConfigurationPolicy.REQUIRE,
- property = { ServiceConstants.TRANSFORMATION_PROPERTY + "=APP4MCSIM" },
- service = IModelToTextConfig.class)
-public class M2TTransformationConfig implements IModelToTextConfig {
-
- private static final Logger LOG = LoggerFactory.getLogger(M2TTransformationConfig.class);
-
- private String folderPath;
-
- @Activate
- void activate(Map<String, ?> properties) {
- folderPath = (String) properties.get(PropertyKeys.INPUT_MODELS_FOLDER);
- }
-
- public ResourceSet getInputResourceSet() {
-
- if (folderPath != null) {
-
- ResourceSet resourceSet = AmaltheaLoader.loadFromDirectoryNamed(folderPath);
-
- if (resourceSet.getResources().isEmpty()) {
- LOG.error(
- "No Amalthea model files are loaded. Verify if the model version is : {}",
- AmaltheaFactory.eINSTANCE.createAmalthea().getVersion());
- }
-
- return resourceSet;
- } else {
- LOG.error("Input_models_folder parameter not set",
- new NullPointerException("input_models_folder property not set"));
- }
-
- return null;
- }
-
-}
diff --git a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/SystemCGuiceModule.java b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/SystemCGuiceModule.java
index d330750..515c8e9 100644
--- a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/SystemCGuiceModule.java
+++ b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/SystemCGuiceModule.java
@@ -1,6 +1,6 @@
/**
********************************************************************************
- * Copyright (c) 2020 Robert Bosch GmbH.
+ * Copyright (c) 2020, 2021 Robert Bosch GmbH.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
@@ -17,18 +17,21 @@
import java.util.Properties;
-import com.google.inject.AbstractModule;
+import org.eclipse.app4mc.transformation.util.TransformationGuiceModule;
+import org.eclipse.app4mc.util.sessionlog.SessionLogger;
-public class SystemCGuiceModule extends AbstractModule {
+public class SystemCGuiceModule extends TransformationGuiceModule {
protected Properties properties;
- public SystemCGuiceModule(Properties properties) {
+ public SystemCGuiceModule(SessionLogger logger, Properties properties) {
+ super(logger);
this.properties = properties;
}
@Override
protected void configure() {
+ super.configure();
bind(Properties.class).toInstance(this.properties);
}
diff --git a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/SystemCGuiceModuleFactory.java b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/SystemCGuiceModuleFactory.java
index 487a7aa..03fe69c 100644
--- a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/SystemCGuiceModuleFactory.java
+++ b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/SystemCGuiceModuleFactory.java
@@ -1,6 +1,6 @@
/**
********************************************************************************
- * Copyright (c) 2020 Robert Bosch GmbH.
+ * Copyright (c) 2020, 2021 Robert Bosch GmbH.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
@@ -17,15 +17,14 @@
import java.util.Properties;
+import org.eclipse.app4mc.util.sessionlog.SessionLogger;
import org.osgi.service.component.annotations.Component;
-@Component(
- service = SystemCGuiceModuleFactory.class)
-
+@Component(service = SystemCGuiceModuleFactory.class)
public class SystemCGuiceModuleFactory {
- public SystemCGuiceModule getModule(Properties properties) {
- return new SystemCGuiceModule(properties);
+ public SystemCGuiceModule getModule(SessionLogger logger, Properties properties) {
+ return new SystemCGuiceModule(logger, properties);
}
}
diff --git a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/SystemCRootTransformer.java b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/SystemCRootTransformer.java
index bfb439e..9c2afb2 100644
--- a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/SystemCRootTransformer.java
+++ b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/SystemCRootTransformer.java
@@ -22,6 +22,7 @@
import org.eclipse.app4mc.amlt2systemc.m2t.module.PropertyKeys;
import org.eclipse.app4mc.amlt2systemc.m2t.transformers.AmaltheaModel2TextTransformer;
import org.eclipse.app4mc.transformation.ServiceConstants;
+import org.eclipse.app4mc.transformation.TransformationConstants;
import org.eclipse.app4mc.transformation.transformers.Model2TextRootTransformer;
import org.eclipse.emf.common.util.EList;
import org.eclipse.emf.ecore.resource.Resource;
@@ -30,8 +31,6 @@
import org.osgi.service.component.annotations.Component;
import org.osgi.service.component.annotations.ConfigurationPolicy;
import org.osgi.service.component.annotations.Reference;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
import com.google.inject.Guice;
import com.google.inject.Injector;
@@ -44,28 +43,30 @@
public class SystemCRootTransformer extends Model2TextRootTransformer {
- private static final Logger LOG = LoggerFactory.getLogger(SystemCRootTransformer.class);
-
@Reference
SystemCGuiceModuleFactory factory;
Properties properties;
@Activate
- void activate(Map<String, ?> properties) {
- LOG.debug("SystemCRootTransformer activated : {}", this.hashCode());
-
+ @Override
+ protected void activate(Map<String, ?> properties) {
+ super.activate(properties);
this.properties = new Properties();
this.properties.putAll(properties);
+
+ // set the output directory to the local properties
+ this.properties.put(TransformationConstants.TRANSFORMATION_OUTPUT_FOLDER, getOutputFolder());
}
-
+
@Override
- public void m2tTransformation(ResourceSet inputResourceSet) {
+ public void m2tTransformation() {
- Injector injector = Guice.createInjector(factory.getModule(properties));
+ Injector injector = Guice.createInjector(factory.getModule(logger, properties));
AmaltheaModel2TextTransformer instance = injector.getInstance(AmaltheaModel2TextTransformer.class);
+ ResourceSet inputResourceSet = getInputResourceSet(getInputFolder(), logger);
setProjectName(inputResourceSet, this.properties);
instance.m2tTransformation(inputResourceSet);
diff --git a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/config/M2TTransformation.java b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/config/M2TTransformation.java
deleted file mode 100644
index 69763a9..0000000
--- a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/config/M2TTransformation.java
+++ /dev/null
@@ -1,66 +0,0 @@
-/**
- ********************************************************************************
- * Copyright (c) 2020, 2021 Robert Bosch GmbH.
- *
- * This program and the accompanying materials are made
- * available under the terms of the Eclipse Public License 2.0
- * which is available at https://www.eclipse.org/legal/epl-2.0/
- *
- * SPDX-License-Identifier: EPL-2.0
- *
- * Contributors:
- * Robert Bosch GmbH - initial API and implementation
- ********************************************************************************
- */
-
-package org.eclipse.app4mc.amlt2systemc.m2t.config;
-
-import java.util.Properties;
-
-import org.eclipse.app4mc.amalthea.model.AmaltheaFactory;
-import org.eclipse.app4mc.amalthea.model.io.AmaltheaLoader;
-import org.eclipse.app4mc.amlt2systemc.m2t.module.PropertyKeys;
-import org.eclipse.app4mc.transformation.executiontype.IModelToTextConfig;
-import org.eclipse.emf.ecore.resource.ResourceSet;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
-
-public class M2TTransformation implements IModelToTextConfig {
-
- private Properties parameters;
-
- private static final Logger LOG = LoggerFactory.getLogger(M2TTransformation.class);
-
- @Override
- public ResourceSet getInputResourceSet() {
-
- if (parameters != null) {
-
- String folderPath = parameters.getProperty(PropertyKeys.INPUT_MODELS_FOLDER);
-
- if (folderPath != null) {
-
- ResourceSet resourceSet = AmaltheaLoader.loadFromDirectoryNamed(folderPath);
-
- if (resourceSet.getResources().isEmpty()) {
- LOG.error("No Amalthea model files are loaded. Verify if the model version is : {}",
- AmaltheaFactory.eINSTANCE.createAmalthea().getVersion());
- }
-
- return resourceSet;
- } else {
- LOG.error("Input_models_folder parameter not set",
- new NullPointerException("input_models_folder property not set"));
- }
-
- } else {
- LOG.error("Parameters object not set ", new NullPointerException("Parameter object is null"));
- }
- return null;
- }
-
- public void setProperties(Properties parameters) {
- this.parameters = parameters;
- }
-
-}
diff --git a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/module/PropertyKeys.java b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/module/PropertyKeys.java
index 6cff52f..3c373ae 100644
--- a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/module/PropertyKeys.java
+++ b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/module/PropertyKeys.java
@@ -1,6 +1,6 @@
/**
********************************************************************************
- * Copyright (c) 2020 Robert Bosch GmbH.
+ * Copyright (c) 2020, 2021 Robert Bosch GmbH.
*
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
@@ -22,11 +22,7 @@
throw new IllegalStateException("Utility class");
}
- public static final String INPUT_MODELS_FOLDER = "input_models_folder";
- public static final String M2M_OUTPUT_FOLDER = "m2m_output_folder";
- public static final String M2T_OUTPUT_FOLDER = "m2t_output_folder";
public static final String APP4MCSIM_FOLDER = "app4mcsim_folder";
- public static final String LOG_FILE = "logFile";
public static final String PROJECT_NAME = "project_name";
}
diff --git a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/AmaltheaModel2TextTransformer.java b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/AmaltheaModel2TextTransformer.java
index c63518e..cf1178e 100644
--- a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/AmaltheaModel2TextTransformer.java
+++ b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/AmaltheaModel2TextTransformer.java
@@ -22,51 +22,60 @@
import org.eclipse.app4mc.amalthea.model.Amalthea;
import org.eclipse.app4mc.amlt2systemc.m2t.module.BaseTransformer;
-import org.eclipse.app4mc.amlt2systemc.m2t.module.PropertyKeys;
+import org.eclipse.app4mc.transformation.TransformationConstants;
import org.eclipse.app4mc.transformation.util.OutputBuffer;
+import org.eclipse.app4mc.util.sessionlog.SessionLogger;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.resource.Resource;
import org.eclipse.emf.ecore.resource.ResourceSet;
-import org.slf4j.Logger;
-import org.slf4j.LoggerFactory;
import com.google.inject.Inject;
public class AmaltheaModel2TextTransformer extends BaseTransformer {
- private static final Logger LOG = LoggerFactory.getLogger(AmaltheaModel2TextTransformer.class);
+ @Inject private SessionLogger logger;
@Inject private OutputBuffer outputBuffer;
@Inject private AmaltheaTransformer amaltheaTransformer;
@Inject private CMakeTopGenerator cmakeTopGenerator;
public void m2tTransformation(final ResourceSet inputResourceSet) {
+ // configure output buffer
+ this.outputBuffer.initialize(this.getProperty(TransformationConstants.TRANSFORMATION_OUTPUT_FOLDER));
+ this.outputBuffer.configureFiletype("SRC", ".cpp", "// This code was generated for simulation with app4mc.sim\n\n", null);
+ this.outputBuffer.configureFiletype("INC", ".h", "// This code was generated for simulation with app4mc.sim\n\n#pragma once\n\n", null);
+ this.outputBuffer.configureFiletype("OTHER", "", "", "");
+
+ ArrayList<Amalthea> amaltheas = new ArrayList<Amalthea>();
for (final Resource resource : inputResourceSet.getResources()) {
for (final EObject model : resource.getContents()) {
- LOG.info(("Processing file : " + resource.getURI()));
-
+ logger.info("Processing file : {0}", resource.getURI());
+
if ((model instanceof Amalthea)) {
-
- this.outputBuffer.initialize(this.getProperty(PropertyKeys.M2T_OUTPUT_FOLDER));
- this.outputBuffer.configureFiletype("SRC", ".cpp", "// This code was generated for simulation with app4mc.sim\n\n", null);
- this.outputBuffer.configureFiletype("INC", ".h", "// This code was generated for simulation with app4mc.sim\n\n#pragma once\n\n", null);
- this.outputBuffer.configureFiletype("OTHER", "", "", "");
-
- this.amaltheaTransformer.transform(((Amalthea) model));
- this.cmakeTopGenerator.transform();
-
- ArrayList<Path> buildPathList = new ArrayList<>();
- Path buildPath = Paths.get(outputBuffer.getOutputFolder(),"build");
- if(Files.isDirectory(buildPath)) {
- buildPathList.add(buildPath);
- }
- this.outputBuffer.setExcludePathsOfResult(buildPathList);
- this.outputBuffer.finish(true, true);
-
- LOG.info("Script file generated at : {}", this.outputBuffer.getOutputFolder());
+ amaltheas.add((Amalthea) model);
}
}
}
+
+ //transform models
+ this.amaltheaTransformer.transform(amaltheas.toArray(new Amalthea[amaltheas.size()]));
+
+ logger.info("Generating cmake");
+
+ this.cmakeTopGenerator.transform();
+
+ // exclude build path
+ ArrayList<Path> buildPathList = new ArrayList<>();
+ Path buildPath = Paths.get(outputBuffer.getOutputFolder(),"build");
+ if(Files.isDirectory(buildPath)) {
+ buildPathList.add(buildPath);
+ }
+
+ // write output buffer to disk
+ this.outputBuffer.setExcludePathsOfResult(buildPathList);
+ this.outputBuffer.finish(true, true);
+
+ logger.info("Script file generated at : {0}", this.outputBuffer.getOutputFolder());
}
}
diff --git a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/AmaltheaTransformer.xtend b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/AmaltheaTransformer.xtend
index d483247..48567d8 100644
--- a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/AmaltheaTransformer.xtend
+++ b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/AmaltheaTransformer.xtend
@@ -16,8 +16,8 @@
package org.eclipse.app4mc.amlt2systemc.m2t.transformers
import com.google.inject.Inject
+import com.google.inject.Singleton
import org.eclipse.app4mc.amalthea.model.Amalthea
-import org.eclipse.app4mc.amalthea.model.check.ModelStructureCheck
import org.eclipse.app4mc.amalthea.model.util.ModelUtil
import org.eclipse.app4mc.amlt2systemc.m2t.module.BaseTransformer
import org.eclipse.app4mc.amlt2systemc.m2t.module.PropertyKeys
@@ -29,10 +29,11 @@
import org.eclipse.app4mc.amlt2systemc.m2t.transformers.os.OsModelTransformer
import org.eclipse.app4mc.amlt2systemc.m2t.transformers.stimuli.StimuliModelTransformer
import org.eclipse.app4mc.amlt2systemc.m2t.transformers.sw.SWModelTransformer
+import org.eclipse.app4mc.amlt2systemc.m2t.utils.TuSort
import org.eclipse.app4mc.transformation.util.OutputBuffer
-import org.slf4j.Logger
-import org.slf4j.LoggerFactory
+import org.eclipse.app4mc.util.sessionlog.SessionLogger
+@Singleton
class AmaltheaTransformer extends BaseTransformer {
@Inject OutputBuffer outputBuffer
@@ -46,7 +47,7 @@
@Inject ProcessingUnitTransformer processingUnitTransformer
@Inject MemoryTransformer memoryTransformer
- static final Logger LOG = LoggerFactory.getLogger(AmaltheaTransformer);
+ @Inject SessionLogger logger;
static def getModulePath() {
return "amaltheaTop"
@@ -56,23 +57,27 @@
return getModulePath() + "/amalthea"
}
- def void transform(Amalthea amalthea) {
-
- if (amalthea === null) {
- LOG.error("Input Amalthea model invalid (received null).")
+ def void transform(Amalthea[] amaltheas) {
+ if (amaltheas === null || amaltheas.empty) {
+ logger.error("Input Amalthea model(s) invalid (received null).")
return
}
-
- if (!ModelStructureCheck.checkModel(amalthea, null, false)){
- LOG.error("Input Amalthea model failed model structure check.")
- return
- }
+
+ //make sure all submodels are present in at least one input model
+ //Note: chose index 0 at will, any list element would do just fine
+ adjustModel(amaltheas.get(0))
- adjustModel(amalthea)
+ swModelTransformer.transform(amaltheas.map[it.swModel])
+ hwModelTransformer.transform(amaltheas.map[it.hwModel])
+ mappingModelTransformer.transform(amaltheas.map[it.mappingModel])
+ osModelTransformer.transform(amaltheas.map[it.osModel])
+ eventModelTransformer.transform(amaltheas.map[it.eventModel])
+ stimuliModelTransformer.transform(amaltheas.map[it.stimuliModel])
- outputBuffer.appendTo("INC", getModuleName(), toH(amalthea))
- outputBuffer.appendTo("SRC", getModuleName(), toCpp(amalthea))
+ outputBuffer.appendTo("INC", getModuleName(), toH())
+ outputBuffer.appendTo("SRC", getModuleName(), toCpp())//swModels, hwModels, mappingModels, osModels, eventModels, stimuliModels))
outputBuffer.appendTo("OTHER", getModulePath() + "/CMakeLists.txt", getCMake());
+
}
private def void adjustModel(Amalthea amalthea) {
@@ -85,99 +90,126 @@
ModelUtil.getOrCreateStimuliModel(amalthea);
}
- private def String toH(Amalthea amalthea) '''
+ private def String toH() '''
//top level header
'''
- private def String toCpp(Amalthea amalthea) '''
- #include "APP4MCsim.h"
- #include "Tracer/Tracer.h"
- #include "Tracer/BTFTracer.h"
-
- #include "«getModuleName()».h"
- //include model elements
- #include "«swModelTransformer.transform(ModelUtil.getOrCreateSwModel(amalthea)).module».h"
- #include "«hwModelTransformer.transform(ModelUtil.getOrCreateHwModel(amalthea)).module».h"
- #include "«mappingModelTransformer.transform(ModelUtil.getOrCreateMappingModel(amalthea)).module».h"
- #include "«osModelTransformer.transform(ModelUtil.getOrCreateOsModel(amalthea)).module».h"
- #include "«eventModelTransformer.transform(ModelUtil.getOrCreateEventModel(amalthea)).module».h"
- #include "«stimuliModelTransformer.transform(ModelUtil.getOrCreateStimuliModel(amalthea)).module».h"
-
-
- //include processing units and memories for tracing -----
- «FOR tu: processingUnitTransformer.cache.values»
- #include "«tu.module».h"
- «ENDFOR»
- «FOR tu: memoryTransformer.cache.values»
- #include "«tu.module».h"
- «ENDFOR»
- // tracing includes -----------------
-
- INITIALIZE_EASYLOGGINGPP;
-
- int sc_main(int argc, char *argv[]) {
- //static code ----------------------
- START_EASYLOGGINGPP(argc, argv);
- sc_core::sc_set_time_resolution(1.0,sc_core::SC_NS);
- //end static code ------------------
-
- /* Hardware */
- «hwModelTransformer.transform(amalthea.hwModel).call»;
-
- /* Software */
- «swModelTransformer.transform(amalthea.swModel).call»;
-
- /* OS */
- «osModelTransformer.transform(amalthea.osModel).call»;
-
-
- /* Mapping */
- «mappingModelTransformer.transform(amalthea.mappingModel).call»;
+ private def String toCpp()'''
+ #include "APP4MCsim.h"
+ #include "Tracer/Tracer.h"
+ #include "Tracer/BTFTracer.h"
- /* Event */
- «eventModelTransformer.transform(amalthea.eventModel).call»;
+ #include "«getModuleName()».h"
+ //include model elements
+ «FOR obj : TuSort.byModule(swModelTransformer.cache.values)»
+ #include "«obj.module».h"
+ «ENDFOR»
+ «FOR obj : TuSort.byModule(hwModelTransformer.cache.values)»
+ #include "«obj.module».h"
+ «ENDFOR»
+ «FOR obj : TuSort.byModule(osModelTransformer.cache.values)»
+ #include "«obj.module».h"
+ «ENDFOR»
+ «FOR obj : TuSort.byModule(mappingModelTransformer.cache.values)»
+ #include "«obj.module».h"
+ «ENDFOR»
+ «FOR obj : TuSort.byModule(eventModelTransformer.cache.values)»
+ #include "«obj.module».h"
+ «ENDFOR»
+ «FOR obj : TuSort.byModule(stimuliModelTransformer.cache.values)»
+ #include "«obj.module».h"
+ «ENDFOR»
- /* Stimuli */
- «stimuliModelTransformer.transform(amalthea.stimuliModel).call»;
-
- «val tracer = super.getProperty("tracer", "BtfTracer")»
-
- auto tracer = std::make_shared<«tracer»>();
- TraceManager::setTracer(tracer);
- //static code ----------------------
- sc_core::sc_trace_file *tf = sc_core::sc_create_vcd_trace_file("trace");
-
- //trace processing units and memories -----
+ //include processing units and memories for tracing -----
«FOR tu: processingUnitTransformer.cache.values»
- sc_trace(tf, &*«tu.call»(), "«tu.module.replaceAll("/", "_")»");
+ #include "«tu.module».h"
«ENDFOR»
«FOR tu: memoryTransformer.cache.values»
- sc_trace(tf, &*«tu.call»(), "«tu.module.replaceAll("/", "_")»");
+ #include "«tu.module».h"
«ENDFOR»
- // tracing includes -----------------
-
-
- try {
- «val simDuration = super.getProperty("simDurationInMS", "1000")»
- sc_core::sc_start(«simDuration», sc_core::SC_MS);
+ // tracing includes -----------------
+
+ INITIALIZE_EASYLOGGINGPP;
+
+ int sc_main(int argc, char *argv[]) {
+ //static code ----------------------
+ START_EASYLOGGINGPP(argc, argv);
+ sc_core::sc_set_time_resolution(1.0,sc_core::SC_NS);
+ //end static code ------------------
+
+ /* Software */
+ «FOR obj : TuSort.byModule(swModelTransformer.cache.values)»
+ «obj.call»;
+ «ENDFOR»
+ /* Hardware */
+ «FOR obj : TuSort.byModule(hwModelTransformer.cache.values)»
+ «obj.call»;
+ «ENDFOR»
+ /* OS */
+ «FOR obj : TuSort.byModule(osModelTransformer.cache.values)»
+ «obj.call»;
+ «ENDFOR»
+ /* Mapping */
+ «FOR obj : TuSort.byModule(mappingModelTransformer.cache.values)»
+ «obj.call»;
+ «ENDFOR»
+ /* Event */
+ «FOR obj : TuSort.byModule(eventModelTransformer.cache.values)»
+ «obj.call»;
+ «ENDFOR»
+ /* Stimuli */
+ «FOR obj : TuSort.byModule(stimuliModelTransformer.cache.values)»
+ «obj.call»;
+ «ENDFOR»
+
+ «val tracerProperty = super.getProperty("tracer", "BtfTracer")»
+ auto tracer = std::make_shared<«tracerProperty»>();
+ TraceManager::setTracer(tracer);
+
+ //static code ----------------------
+ sc_core::sc_trace_file *tf = sc_core::sc_create_vcd_trace_file("trace");
+
+ //trace processing units and memories -----
+ «FOR tu: processingUnitTransformer.cache.values»
+ sc_trace(tf, &*«tu.call»(), "«tu.module.replaceAll("/", "_")»");
+ «ENDFOR»
+ «FOR tu: memoryTransformer.cache.values»
+ sc_trace(tf, &*«tu.call»(), "«tu.module.replaceAll("/", "_")»");
+ «ENDFOR»
+
+ //run simulation
+ try {
+ «val simDuration = super.getProperty("simDurationInMS", "1000")»
+ sc_core::sc_start(«simDuration», sc_core::SC_MS);
+ }
+ catch (sc_core::sc_report e) {
+ const char* file = e.get_file_name();
+ const int line = e.get_line_number();
+ const char* msg = e.get_msg();
+ VLOG(0) << msg << "\nin file: " << file << "\nline: " << line;
+ return -1;
+ }
+
+ sc_core::sc_close_vcd_trace_file(tf);
+
+ VLOG(0) << " done ";
+ return 0;
}
- catch (sc_core::sc_report e) {
- const char* file = e.get_file_name();
- const int line = e.get_line_number();
- const char* msg = e.get_msg();
- VLOG(0) << msg << "\nin file: " << file << "\nline: " << line;
- return -1;
- }
+ '''
+
- sc_core::sc_close_vcd_trace_file(tf);
-
- VLOG(0) << " done ";
- return 0;
- }'''
def String getCMake() '''
include_directories(${PROJECT_SOURCE_DIR})
+
+ add_executable («getProperty(PropertyKeys.PROJECT_NAME)»
+ "${PROJECT_SOURCE_DIR}/«getModuleName()».cpp"
+ )
+
+ target_link_libraries(«getProperty(PropertyKeys.PROJECT_NAME)» app4mc.sim_lib)
+ target_include_directories(«getProperty(PropertyKeys.PROJECT_NAME)» PUBLIC app4mc.sim_lib)
+
add_subdirectory ("./hwModel")
add_subdirectory ("./swModel")
add_subdirectory ("./mappingModel")
@@ -185,17 +217,17 @@
add_subdirectory ("./stimuliModel")
add_subdirectory ("./osModel")
- add_executable («getProperty(PropertyKeys.PROJECT_NAME)»
- "${PROJECT_SOURCE_DIR}/«getModuleName()».cpp"
- )
-
- target_link_libraries(«getProperty(PropertyKeys.PROJECT_NAME)» app4mc.sim_lib eventModel_lib stimuliModel_lib swModel_lib hwModel_lib mappingModel_lib osModel_lib)
- target_include_directories(«getProperty(PropertyKeys.PROJECT_NAME)» PUBLIC app4mc.sim_lib eventModel_lib stimuliModel_lib swModel_lib hwModel_lib mappingModel_lib osModel_lib)
+ «IF Integer.parseInt(super.getProperty("CmakeUnityBuildTUPerCore","0")) > 0»
+ #set the unity-batch-size to a Processorcount dependend value, for more efficient compiling
+ if(COMMAND calc_unity_batch_size)
+ calc_unity_batch_size(«getProperty(PropertyKeys.PROJECT_NAME)» «super.getProperty("CmakeUnityBuildTUPerCore")»)
+ endif()
+ «ENDIF»
add_custom_target(model_execution
- COMMAND «getProperty(PropertyKeys.PROJECT_NAME)»
- WORKING_DIRECTORY "${MODEL_WORKING_DIR}"
- )
+ COMMAND «getProperty(PropertyKeys.PROJECT_NAME)»
+ WORKING_DIRECTORY "${MODEL_WORKING_DIR}"
+ )
'''
}
diff --git a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/event/EventModelTransformer.xtend b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/event/EventModelTransformer.xtend
index 78f93c0..832e7c8 100644
--- a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/event/EventModelTransformer.xtend
+++ b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/event/EventModelTransformer.xtend
@@ -24,6 +24,7 @@
import org.eclipse.app4mc.amlt2systemc.m2t.transformers.TranslationUnit
import org.eclipse.app4mc.amlt2systemc.m2t.utils.TuSort
import org.eclipse.app4mc.transformation.util.OutputBuffer
+import org.eclipse.app4mc.amlt2systemc.m2t.module.PropertyKeys
@Singleton
class EventModelTransformer extends BaseTransformer {
@@ -46,18 +47,15 @@
return "init_eventModel()"
}
- private def getLibName() {
- return "eventModel_lib"
- }
-
def create new TranslationUnit(
getModuleName(),
getFunctionDef()
- ) transform(EventModel eventModel) {
- // start transformation @ task level,
- // Note: generate referenced object (e.g. runnables) when referenced (eg. in a runnable call within the call graph)
- eventModel.events.forEach[eventsDispatcher.transform(it)]
-
+ ) transform(EventModel[] eventModels) {
+ eventModels.forEach[eventModel |{
+ // start transformation @ task level,
+ // Note: generate referenced object (e.g. runnables) when referenced (eg. in a runnable call within the call graph)
+ eventModel.events.forEach[eventsDispatcher.transform(it)]
+ }]
outputBuffer.appendTo("INC", it.module, toH())
outputBuffer.appendTo("SRC", it.module, toCpp())
outputBuffer.appendTo("OTHER", getModulePath() + "/CMakeLists.txt", getCMake(it.module));
@@ -92,19 +90,19 @@
def String getCMake(String thisModule) '''
- # CMakeList.txt: CMake project for "«getLibName()»".
- # Include the source and define project specific logic here.
- #
- cmake_minimum_required (VERSION 3.12)
-
- # Add a source to the project executable
- add_library («getLibName()» OBJECT
+ # CMakeList.txt: CMake project for EventModel of "«getProperty(PropertyKeys.PROJECT_NAME)»".
+
+
+ # Add sources of EventModel
+ target_sources («getProperty(PropertyKeys.PROJECT_NAME)» PRIVATE
«FOR obj : TuSort.byModule(eventsDispatcher.getCache(typeof(ChannelEvent)).values)»
"${PROJECT_SOURCE_DIR}/«(obj as TranslationUnit).module».cpp"
«ENDFOR»
- "${PROJECT_SOURCE_DIR}/«thisModule».cpp" )
- target_link_libraries(«getLibName()» app4mc.sim_lib easyloggingpp)
+ "${PROJECT_SOURCE_DIR}/«thisModule».cpp")
'''
+ def getCache(){
+ return this._createCache_transform
+ }
}
diff --git a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/hw/ConnectionHandlerTransformer.xtend b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/hw/ConnectionHandlerTransformer.xtend
index fbbbe38..c6ede8d 100644
--- a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/hw/ConnectionHandlerTransformer.xtend
+++ b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/hw/ConnectionHandlerTransformer.xtend
@@ -69,7 +69,7 @@
«setPortsAndConnections(connectionHandler)»
//frequency domain
«IF (connectionHandler.frequencyDomain !== null)»
- «name»->clock_period= *«frequencyDomainTransformer.transform(connectionHandler.frequencyDomain).call»;
+ «name»->clock_period= «frequencyDomainTransformer.transform(connectionHandler.frequencyDomain).call»;
«ENDIF»
}
return «name»;
diff --git a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/hw/FrequencyDomainTransformer.xtend b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/hw/FrequencyDomainTransformer.xtend
index 7f48325..8281b6c 100644
--- a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/hw/FrequencyDomainTransformer.xtend
+++ b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/hw/FrequencyDomainTransformer.xtend
@@ -48,20 +48,15 @@
def String toH(FrequencyDomain frequencyDomain) '''
#include <systemc>
- sc_core::sc_time* «getCall(frequencyDomain)»;
+ sc_core::sc_time «getCall(frequencyDomain)»;
'''
def String toCpp(FrequencyDomain frequencyDomain) '''
#include "«getModulePath(frequencyDomain)».h"
- sc_core::sc_time* «getName(frequencyDomain)» = nullptr;
-
- sc_core::sc_time* «getCall(frequencyDomain)» {
- if («getName(frequencyDomain)» == nullptr){
- «getName(frequencyDomain)» = new sc_core::sc_time(«getPeriodInPS(frequencyDomain.defaultValue)», sc_core::SC_PS);
- }
- return «getName(frequencyDomain)»;
+ sc_core::sc_time «getCall(frequencyDomain)» {
+ return sc_core::sc_time(«getPeriodInPS(frequencyDomain.defaultValue)», sc_core::SC_PS);
}
'''
diff --git a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/hw/HwAccessElementTransformer.xtend b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/hw/HwAccessElementTransformer.xtend
index f078475..71ad322 100644
--- a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/hw/HwAccessElementTransformer.xtend
+++ b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/hw/HwAccessElementTransformer.xtend
@@ -61,7 +61,7 @@
#include "Common.h"
#include "HardwareModel.h"
- HwAccessElement* «getCall(hwAccessElement)»();
+ HwAccessElement «getCall(hwAccessElement)»();
'''
private def String toCpp(HwAccessElement hwAccessElement) '''
@@ -75,37 +75,33 @@
#include "«hwModuleTransformer.transform(hwAccessElement.source).module».h"
#include "«hwModuleTransformer.transform(hwAccessElement.destination).module».h"
- «val name = getName(hwAccessElement)»
- HwAccessElement* «name» = nullptr;
-
/* HwAccessWlement not contained in structure, eg. in flat hardware model */
- HwAccessElement* «getCall(hwAccessElement)»(){
- if («name»==NULL){
- «name» = new HwAccessElement();
- «IF hwAccessElement.readLatency !== null »
- «name»->setReadLatency(«IDiscreteValueDeviationTransformer.getDeviation(hwAccessElement.readLatency)»);
- «ENDIF»
- «IF hwAccessElement.writeLatency !== null »
- «name»->setWriteLatency(«IDiscreteValueDeviationTransformer.getDeviation(hwAccessElement.writeLatency)»);
- «ENDIF»
- «IF hwAccessElement.dataRate !== null »
- «name»->setDataRate(«DataRateUtil.transform(hwAccessElement.dataRate)»);
- «ENDIF»
+ HwAccessElement «getCall(hwAccessElement)»(){
+ //utilize RTO here
+ HwAccessElement returnVal;
+ «IF hwAccessElement.readLatency !== null »
+ returnVal.setReadLatency(«IDiscreteValueDeviationTransformer.getDeviation(hwAccessElement.readLatency)»);
+ «ENDIF»
+ «IF hwAccessElement.writeLatency !== null »
+ returnVal.setWriteLatency(«IDiscreteValueDeviationTransformer.getDeviation(hwAccessElement.writeLatency)»);
+ «ENDIF»
+ «IF hwAccessElement.dataRate !== null »
+ returnVal.setDataRate(«DataRateUtil.transform(hwAccessElement.dataRate)»);
+ «ENDIF»
+
+
+ «IF hwAccessElement.accessPath !== null»
+ «val calls = getAccessElementCalls(hwAccessElement)»
+ returnVal.path.elements.assign({«FOR call : calls» «call» «ENDFOR»});
+ «ENDIF»
+
+ //set source
+ returnVal.source = «hwModuleTransformer.transform(hwAccessElement.source).call»();
+
+ //set destination
+ returnVal.dest = «hwModuleTransformer.transform(hwAccessElement.destination).call»();
-
- «IF hwAccessElement.accessPath !== null»
- «val calls = getAccessElementCalls(hwAccessElement)»
- «name»->path.elements.assign({«FOR call : calls» «call» «ENDFOR»});
- «ENDIF»
-
- //set source
- «name»->source = «hwModuleTransformer.transform(hwAccessElement.source).call»();
-
- //set destination
- «name»->dest = «hwModuleTransformer.transform(hwAccessElement.destination).call»();
-
- }
- return «name»;
+ return returnVal;
}
'''
diff --git a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/hw/HwModelTransformer.xtend b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/hw/HwModelTransformer.xtend
index d5d92c7..9a61f84 100644
--- a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/hw/HwModelTransformer.xtend
+++ b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/hw/HwModelTransformer.xtend
@@ -19,10 +19,11 @@
import com.google.inject.Singleton
import org.eclipse.app4mc.amalthea.model.HWModel
import org.eclipse.app4mc.amlt2systemc.m2t.module.BaseTransformer
+import org.eclipse.app4mc.amlt2systemc.m2t.module.PropertyKeys
import org.eclipse.app4mc.amlt2systemc.m2t.transformers.AmaltheaTransformer
import org.eclipse.app4mc.amlt2systemc.m2t.transformers.TranslationUnit
-import org.eclipse.app4mc.transformation.util.OutputBuffer
import org.eclipse.app4mc.amlt2systemc.m2t.utils.TuSort
+import org.eclipse.app4mc.transformation.util.OutputBuffer
@Singleton
class HwModelTransformer extends BaseTransformer {
@@ -39,10 +40,6 @@
return "init_hwModel()"
}
- private def getLibName() {
- return "hwModel_lib"
- }
-
@Inject OutputBuffer outputBuffer
@Inject HwStructureTransformer hwStructureTransformer
@Inject FrequencyDomainTransformer frequencyDomainTransformer
@@ -57,98 +54,99 @@
def create new TranslationUnit(
getModuleName(),
getFunctionDef()
- ) transform(HWModel hwModel) {
+ ) transform(HWModel[] hwModels) {
+ hwModels.forEach[hwModel | {
+ hwModel.structures.forEach[structure |{
+ hwStructureTransformer.transform(structure)
+ }]
+ }]
// start transformation @ task level,
// Note: generate referenced object (e.g. runnables) when referenced (eg. in a runnable call within the call graph)
- outputBuffer.appendTo("INC", it.module, toH(hwModel))
- outputBuffer.appendTo("SRC", it.module, toCpp(hwModel))
+ outputBuffer.appendTo("INC", it.module, toH())
+ outputBuffer.appendTo("SRC", it.module, toCpp())
val buf = getCMake(it.module);
outputBuffer.appendTo("OTHER", getModulePath() + "/CMakeLists.txt", buf);
}
- private def String toH(HWModel hwModel) '''
+ private def String toH() '''
#include <systemc>
#include <memory>
#include "Common.h"
#include "HardwareModel.h"
//include model elements
- «FOR structure : hwModel.structures»
- #include "«hwStructureTransformer.transform(structure).module».h"
+ «FOR structure : TuSort.byModule(hwStructureTransformer.cache.values)»
+ #include "«structure.module».h"
«ENDFOR»
+
void «getFunctionDef()»;
'''
- private def String toCpp(HWModel hwModel) '''
+ private def String toCpp() '''
#include "«getModuleName».h"
/* Hardware */
void «getFunctionDef()»{
- «FOR structure : hwModel.structures»
- «hwStructureTransformer.transform(structure).call»();
+ «FOR structure : TuSort.byModule(hwStructureTransformer.cache.values)»
+ «structure.call»();
«ENDFOR»
}
'''
def String getCMake(String thisModule) '''
- # CMakeList.txt: CMake project for "«getLibName()»".
- # Include the source and define project specific logic here.
- #
- cmake_minimum_required (VERSION 3.12)
+ # CMakeList.txt: CMake project for HwModel of "«getProperty(PropertyKeys.PROJECT_NAME)»".
+
-
- # Add a source to the project executable
- add_library («getLibName()» OBJECT
+ # Add sources of HwModel
+ target_sources («getProperty(PropertyKeys.PROJECT_NAME)» PRIVATE
#features
- «FOR obj : TuSort.byModule(hwFeatureTransformer.cache.values)»
- "${PROJECT_SOURCE_DIR}/«(obj as TranslationUnit).module».cpp"
- «ENDFOR»
+ «FOR obj : TuSort.byModule(hwFeatureTransformer.cache.values)»
+ "${PROJECT_SOURCE_DIR}/«(obj as TranslationUnit).module».cpp"
+ «ENDFOR»
#definitions
- «FOR obj : TuSort.byModule(processingUnitDefinitionTransformer.cache.values)»
- "${PROJECT_SOURCE_DIR}/«(obj as TranslationUnit).module».cpp"
- «ENDFOR»
+ «FOR obj : TuSort.byModule(processingUnitDefinitionTransformer.cache.values)»
+ "${PROJECT_SOURCE_DIR}/«(obj as TranslationUnit).module».cpp"
+ «ENDFOR»
#domains
- «FOR obj : TuSort.byModule(frequencyDomainTransformer.cache.values)»
- "${PROJECT_SOURCE_DIR}/«(obj as TranslationUnit).module».cpp"
- «ENDFOR»
+ «FOR obj : TuSort.byModule(frequencyDomainTransformer.cache.values)»
+ "${PROJECT_SOURCE_DIR}/«(obj as TranslationUnit).module».cpp"
+ «ENDFOR»
+
#hw structure
- «FOR obj : TuSort.byModule(hwStructureTransformer.cache.values)»
- "${PROJECT_SOURCE_DIR}/«(obj as TranslationUnit).module».cpp"
- «ENDFOR»
-
- # modules
- «FOR obj : TuSort.byModule(memoryTransformer.cache.values)»
- "${PROJECT_SOURCE_DIR}/«(obj as TranslationUnit).module».cpp"
- «ENDFOR»
- «FOR obj : TuSort.byModule(processingUnitTransformer.cache.values)»
- "${PROJECT_SOURCE_DIR}/«(obj as TranslationUnit).module».cpp"
- «ENDFOR»
- «FOR obj : TuSort.byModule(connectionHandlerTransformer.cache.values)»
- "${PROJECT_SOURCE_DIR}/«(obj as TranslationUnit).module».cpp"
- «ENDFOR»
-
+ «FOR obj : TuSort.byModule(hwStructureTransformer.cache.values)»
+ "${PROJECT_SOURCE_DIR}/«(obj as TranslationUnit).module».cpp"
+ «ENDFOR»
+
+ # modules
+ «FOR obj : TuSort.byModule(memoryTransformer.cache.values)»
+ "${PROJECT_SOURCE_DIR}/«(obj as TranslationUnit).module».cpp"
+ «ENDFOR»
+ «FOR obj : TuSort.byModule(processingUnitTransformer.cache.values)»
+ "${PROJECT_SOURCE_DIR}/«(obj as TranslationUnit).module».cpp"
+ «ENDFOR»
+ «FOR obj : TuSort.byModule(connectionHandlerTransformer.cache.values)»
+ "${PROJECT_SOURCE_DIR}/«(obj as TranslationUnit).module».cpp"
+ «ENDFOR»
+
#connections
«FOR obj : TuSort.byModule(hwConnectionTransformer.cache.values)»
"${PROJECT_SOURCE_DIR}/«(obj as TranslationUnit).module».cpp"
«ENDFOR»
-
+
#HW access elements
«FOR obj : TuSort.byModule(hwAccessElementTransformer.cache.values)»
"${PROJECT_SOURCE_DIR}/«(obj as TranslationUnit).module».cpp"
«ENDFOR»
- "${PROJECT_SOURCE_DIR}/«thisModule».cpp")
-
-
- #target_include_directories(RUNNABLES_LIB
- # PUBLIC
- # ${CMAKE_CURRENT_LIST_DIR}/definitions/_inc
- # ${CMAKE_CURRENT_LIST_DIR}/../labels/_inc
-
- target_link_libraries(«getLibName()» app4mc.sim_lib effolkronium_random easyloggingpp systemc)
+
+ "${PROJECT_SOURCE_DIR}/«thisModule».cpp")
+
'''
-
+
+ def getCache(){
+ return this._createCache_transform
+ }
}
diff --git a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/hw/MemoryTransformer.xtend b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/hw/MemoryTransformer.xtend
index 61485cd..cf27bb8 100644
--- a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/hw/MemoryTransformer.xtend
+++ b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/hw/MemoryTransformer.xtend
@@ -65,7 +65,7 @@
«name» = «getConstructor(module)»<Memory>("«name»", 0);
«ENDIF»
«IF (module.frequencyDomain !== null)»
- «name»->clock_period= *«frequencyDomainTransformer.transform(module.frequencyDomain).call»;
+ «name»->clock_period= «frequencyDomainTransformer.transform(module.frequencyDomain).call»;
«ENDIF»
«setPortsAndConnections(module)»
«setAccessLatency(module)»
diff --git a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/hw/ProcessingUnitTransformer.xtend b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/hw/ProcessingUnitTransformer.xtend
index f454b7c..564f087 100644
--- a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/hw/ProcessingUnitTransformer.xtend
+++ b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/hw/ProcessingUnitTransformer.xtend
@@ -67,13 +67,13 @@
«getName(pu)» = «getConstructor(pu)»<ProcessingUnit>("«name»", NULL);
«ENDIF»
«IF (pu.frequencyDomain !== null)»
- «getName(pu)»->clock_period= *«frequencyDomainTransformer.transform(pu.frequencyDomain).call»;
+ «getName(pu)»->clock_period= «frequencyDomainTransformer.transform(pu.frequencyDomain).call»;
«ENDIF»
//ports & connections
«setPortsAndConnections(pu)»
//access elements
«FOR accessElement : pu.accessElements»
- «getName(pu)»->addHWAccessElement(*«hwAccessElementTransformer.transform(accessElement).call»());
+ «getName(pu)»->addHWAccessElement(«hwAccessElementTransformer.transform(accessElement).call»());
«ENDFOR»
}
return «name»;
diff --git a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/mapping/MappingModelTransformer.xtend b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/mapping/MappingModelTransformer.xtend
index 7c70297..cc4a4d7 100644
--- a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/mapping/MappingModelTransformer.xtend
+++ b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/mapping/MappingModelTransformer.xtend
@@ -24,6 +24,7 @@
import org.eclipse.app4mc.amlt2systemc.m2t.transformers.TranslationUnit
import org.eclipse.app4mc.transformation.util.OutputBuffer
import org.eclipse.app4mc.amlt2systemc.m2t.utils.TuSort
+import org.eclipse.app4mc.amlt2systemc.m2t.module.PropertyKeys
@Singleton
class MappingModelTransformer extends BaseTransformer {
@@ -45,22 +46,19 @@
return "init_mappingModel()"
}
- private def getLibName() {
- return "mappingModel_lib"
- }
-
def create new TranslationUnit(
getModuleName(),
getFunctionDef()
- ) transform(MappingModel mappingModel) {
-
- // start transformation @ task level,
- // Note: generate referenced object (e.g. runnables) when referenced (eg. in a runnable call within the call graph)
- mappingModel.memoryMapping.forEach[memMapping|memoryMappingTransformer.transform(memMapping)]
- mappingModel.taskAllocation.forEach[taskAllocation|taskAllocationTransformer.transform(taskAllocation)]
- mappingModel.schedulerAllocation.forEach [ schedulerAllocation |
- schedulerAllocationTransformer.transform(schedulerAllocation)
- ]
+ ) transform(MappingModel[] mappingModels) {
+ mappingModels.forEach[mappingModel | {
+ // start transformation @ task level,
+ // Note: generate referenced object (e.g. runnables) when referenced (eg. in a runnable call within the call graph)
+ mappingModel.memoryMapping.forEach[memMapping|memoryMappingTransformer.transform(memMapping)]
+ mappingModel.taskAllocation.forEach[taskAllocation|taskAllocationTransformer.transform(taskAllocation)]
+ mappingModel.schedulerAllocation.forEach [ schedulerAllocation |
+ schedulerAllocationTransformer.transform(schedulerAllocation)
+ ]
+ }]
outputBuffer.appendTo("INC", it.module, toH())
outputBuffer.appendTo("SRC", it.module, toCpp())
@@ -85,8 +83,7 @@
«FOR obj : TuSort.byModule(schedulerAllocationTransformer.cache.values)»
#include "«(obj as TranslationUnit).module».h"
«ENDFOR»
- void «getFunctionDef()»;
-
+ void «getFunctionDef()»;
'''
private def String toCpp() '''
@@ -106,13 +103,11 @@
'''
def String getCMake(String thisModule) '''
- # CMakeList.txt: CMake project for "«getLibName()»".
- # Include the source and define project specific logic here.
- #
- cmake_minimum_required (VERSION 3.12)
-
- # Add a source to the project executable
- add_library («getLibName()» OBJECT
+ # CMakeList.txt: CMake project for MappingModel of "«getProperty(PropertyKeys.PROJECT_NAME)»".
+
+
+ # Add sources of MappingModel
+ target_sources («getProperty(PropertyKeys.PROJECT_NAME)» PRIVATE
«val uniqueMemoryMappings = new HashSet<String>()»
«memoryMappingTransformer.cache.values.forEach[uniqueMemoryMappings.add(it.module)]»
«FOR module : uniqueMemoryMappings»
@@ -127,7 +122,9 @@
"${PROJECT_SOURCE_DIR}/«(obj as TranslationUnit).module».cpp"
«ENDFOR»
"${PROJECT_SOURCE_DIR}/«thisModule».cpp")
-
- target_link_libraries(«getLibName()» app4mc.sim_lib effolkronium_random easyloggingpp systemc)
'''
+
+ def getCache(){
+ return this._createCache_transform
+ }
}
diff --git a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/os/OsModelTransformer.xtend b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/os/OsModelTransformer.xtend
index 1b182e9..6c718cf 100644
--- a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/os/OsModelTransformer.xtend
+++ b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/os/OsModelTransformer.xtend
@@ -23,6 +23,7 @@
import org.eclipse.app4mc.amlt2systemc.m2t.transformers.TranslationUnit
import org.eclipse.app4mc.transformation.util.OutputBuffer
import org.eclipse.app4mc.amlt2systemc.m2t.utils.TuSort
+import org.eclipse.app4mc.amlt2systemc.m2t.module.PropertyKeys
@Singleton
class OsModelTransformer extends BaseTransformer {
@@ -50,15 +51,21 @@
return "osModel_lib"
}
- def create new TranslationUnit(getModuleName(), getFunctionDef()) transform(OSModel osModel) {
+ def create new TranslationUnit(getModuleName(), getFunctionDef())
+ transform(OSModel[] osModels) {
+ osModels.forEach[osModel |{
+ osModel.operatingSystems.forEach[os |
+ operatingSystemTransformer.transform(os)
+ ]
+ }]
// start transformation @ task level,
// Note: generate referenced object (e.g. runnables) when referenced (eg. in a runnable call within the call graph)
- outputBuffer.appendTo("INC", it.module, toH(osModel))
- outputBuffer.appendTo("SRC", it.module, toCpp(osModel))
+ outputBuffer.appendTo("INC", it.module, toH())
+ outputBuffer.appendTo("SRC", it.module, toCpp())
outputBuffer.appendTo("OTHER", modulePath + "/" + "CMakeLists.txt", getCMake())
}
- private def String toH(OSModel osModel) '''
+ private def String toH() '''
#include <systemc>
#include <memory>
#include "Common.h"
@@ -68,39 +75,39 @@
'''
- private def String toCpp(OSModel osModel) '''
+ private def String toCpp() '''
#include "«getModuleName».h"
- «FOR os : osModel.operatingSystems»
- #include "«operatingSystemTransformer.transform(os).module».h"
+ «FOR os : TuSort.byModule(operatingSystemTransformer.cache.values)»
+ #include "«os.module».h"
«ENDFOR»
/* OS */
void «getFunctionDef()»{
- «FOR os : osModel.operatingSystems»
- «operatingSystemTransformer.transform(os).call»();
+ «FOR os : TuSort.byModule(operatingSystemTransformer.cache.values)»
+ «os.call»();
«ENDFOR»
}
'''
def String getCMake() '''
- # CMakeList.txt: CMake project for "«getLibName()»".
- # Include the source and define project specific logic here.
- #
- cmake_minimum_required (VERSION 3.12)
-
- # Add a source to the project executable
- add_library («getLibName()» OBJECT
+ # CMakeList.txt: CMake project for OsModel of "«getProperty(PropertyKeys.PROJECT_NAME)»".
+
+
+ # Add sources of OsModel
+ target_sources («getProperty(PropertyKeys.PROJECT_NAME)» PRIVATE
«FOR obj : TuSort.byModule(taskSchedulerTransformer.cache.values)»
"${PROJECT_SOURCE_DIR}/«(obj as TranslationUnit).module».cpp"
«ENDFOR»
«FOR obj : TuSort.byModule(operatingSystemTransformer.cache.values)»
"${PROJECT_SOURCE_DIR}/«(obj as TranslationUnit).module».cpp"
«ENDFOR»
- "${PROJECT_SOURCE_DIR}/«moduleName».cpp"
- )
- target_link_libraries(«getLibName()» app4mc.sim_lib effolkronium_random easyloggingpp)
+ "${PROJECT_SOURCE_DIR}/«moduleName».cpp")
'''
+
+ def getCache(){
+ return this._createCache_transform
+ }
}
diff --git a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/stimuli/StimuliModelTransformer.xtend b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/stimuli/StimuliModelTransformer.xtend
index 743e27d..c89ea4f 100644
--- a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/stimuli/StimuliModelTransformer.xtend
+++ b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/stimuli/StimuliModelTransformer.xtend
@@ -12,6 +12,7 @@
import org.eclipse.app4mc.amlt2systemc.m2t.transformers.TranslationUnit
import org.eclipse.app4mc.amlt2systemc.m2t.utils.TuSort
import org.eclipse.app4mc.transformation.util.OutputBuffer
+import org.eclipse.app4mc.amlt2systemc.m2t.module.PropertyKeys
@Singleton
class StimuliModelTransformer extends BaseTransformer {
@@ -31,25 +32,18 @@
return "init_stimuliModel()"
}
- private def getLibName() {
- return "stimuliModel_lib"
- }
-
def create new TranslationUnit(
getModuleName(),
getFunctionDef()
- ) transform(StimuliModel stimuliModel) {
-
-
- // start transformation @ task level,
- // Note: generate referenced object (e.g. runnables) when referenced (eg. in a runnable call within the call graph)
- stimuliModel.stimuli.forEach[stimulusDispatcher.transform(it)]
-
+ ) transform(StimuliModel[] stimuliModels) {
+ stimuliModels.forEach[stimuliModel|{
+ stimuliModel.stimuli.forEach[stimulusDispatcher.transform(it)]
+ }]
outputBuffer.appendTo("INC", it.module, toH())
outputBuffer.appendTo("SRC", it.module, toCpp())
outputBuffer.appendTo("OTHER", getModulePath() + "/CMakeLists.txt", getCMake());
}
-
+
private def String toH() '''
#include <systemc>
#include <memory>
@@ -94,12 +88,11 @@
'''
def String getCMake() '''
- # CMakeList.txt: CMake-Project for "«getLibName()»".
- # Include the source and define project specific logic here.
- #
- cmake_minimum_required (VERSION 3.12)
-
- add_library («getLibName()» OBJECT
+ # CMakeList.txt: CMake project for StimuliModel of "«getProperty(PropertyKeys.PROJECT_NAME)»".
+
+
+ # Add sources of Stimuli
+ target_sources («getProperty(PropertyKeys.PROJECT_NAME)» PRIVATE
«FOR obj : TuSort.byModule(stimulusDispatcher.getCache(typeof(PeriodicStimulus)).values)»
"${PROJECT_SOURCE_DIR}/«(obj as TranslationUnit).module».cpp"
«ENDFOR»
@@ -113,9 +106,10 @@
"${PROJECT_SOURCE_DIR}/«(obj as TranslationUnit).module».cpp"
«ENDFOR»
- "${PROJECT_SOURCE_DIR}/«getModuleName()».cpp"
-
- )
- target_link_libraries(«getLibName()» app4mc.sim_lib effolkronium_random easyloggingpp)
+ "${PROJECT_SOURCE_DIR}/«getModuleName()».cpp")
'''
+
+ def getCache(){
+ return this._createCache_transform
+ }
}
diff --git a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/sw/SWModelTransformer.xtend b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/sw/SWModelTransformer.xtend
index e27f385..7013dd8 100644
--- a/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/sw/SWModelTransformer.xtend
+++ b/simulation_generator/app4mc.sim/plugins/org.eclipse.app4mc.amlt2systemc.m2t/src/org/eclipse/app4mc/amlt2systemc/m2t/transformers/sw/SWModelTransformer.xtend
@@ -23,6 +23,7 @@
import org.eclipse.app4mc.amlt2systemc.m2t.transformers.TranslationUnit
import org.eclipse.app4mc.transformation.util.OutputBuffer
import org.eclipse.app4mc.amlt2systemc.m2t.utils.TuSort
+import org.eclipse.app4mc.amlt2systemc.m2t.module.PropertyKeys
@Singleton
class SWModelTransformer extends BaseTransformer {
@@ -47,18 +48,17 @@
return "init_swModel()"
}
- private def getLibName() {
- return "swModel_lib"
- }
-
def create new TranslationUnit(
getModuleName(),
getFunctionDef()
- ) transform(SWModel swModel) {
+ ) transform(SWModel[] swModels) {
+
+ swModels.forEach[swModel | {
// start transformation @ task level,
// Note: generate referenced object (e.g. runnables) when referenced (eg. in a runnable call within the call graph)
- swModel.tasks.forEach[taskTransformer.transform(it)]
-
+ swModel.tasks.forEach[taskTransformer.transform(it)]
+ }]
+
outputBuffer.appendTo("INC", it.module, toH())
outputBuffer.appendTo("SRC", it.module, toCpp())
outputBuffer.appendTo("OTHER", getModulePath() + "/CMakeLists.txt", getCMake(it.module));
@@ -84,13 +84,11 @@
'''
def String getCMake(String thisModule) '''
- # CMakeList.txt: CMake project for "«getLibName()»".
- # Include the source and define project specific logic here.
- #
- cmake_minimum_required (VERSION 3.12)
-
- # Add a source to the project executable
- add_library («getLibName()» OBJECT
+ # CMakeList.txt: CMake project for SoftwareModel of "«getProperty(PropertyKeys.PROJECT_NAME)»".
+
+
+ # Add sources of SoftwareModel
+ target_sources («getProperty(PropertyKeys.PROJECT_NAME)» PRIVATE
«FOR obj : TuSort.byModule(modeTransformer.cache.values)»
"${PROJECT_SOURCE_DIR}/«(obj as TranslationUnit).module».cpp"
«ENDFOR»
@@ -115,8 +113,11 @@
"${PROJECT_SOURCE_DIR}/«(obj as TranslationUnit).module».cpp"
«ENDFOR»
- "${PROJECT_SOURCE_DIR}/«thisModule».cpp" )
- target_link_libraries(«getLibName()» app4mc.sim_lib effolkronium_random easyloggingpp)
+ "${PROJECT_SOURCE_DIR}/«thisModule».cpp")
'''
+
+ def getCache(){
+ return this._createCache_transform
+ }
}
diff --git a/simulation_generator/app4mc.sim/releng/org.eclipse.app4mc.amlt2systemc.product/Amlt2SystemC.product b/simulation_generator/app4mc.sim/releng/org.eclipse.app4mc.amlt2systemc.product/Amlt2SystemC.product
index dd76b81..d51f512 100644
--- a/simulation_generator/app4mc.sim/releng/org.eclipse.app4mc.amlt2systemc.product/Amlt2SystemC.product
+++ b/simulation_generator/app4mc.sim/releng/org.eclipse.app4mc.amlt2systemc.product/Amlt2SystemC.product
@@ -7,9 +7,9 @@
</configIni>
<launcherArgs>
- <programArgs>--properties ${workspace_loc:org.eclipse.app4mc.amlt2systemc.product}/input/democarWithFixedPriorityScheduler/democarWithFixedPriorityScheduler.properties --workingDirectory ${workspace_loc:org.eclipse.app4mc.amlt2systemc.product}
+ <programArgs>--properties ${workspace_loc:org.eclipse.app4mc.amlt2systemc.product}/input/democarWithFixedPriorityScheduler/democarWithFixedPriorityScheduler.properties --workingDirectory ${workspace_loc:org.eclipse.app4mc.amlt2systemc.product} -console
</programArgs>
- <vmArgs>-Declipse.ignoreApp=true -Dosgi.noShutdown=true -Dlog4j.configuration=headless_log4j.xml -Dorg.eclipse.emf.ecore.EPackage.Registry.INSTANCE=org.eclipse.emf.ecore.impl.EPackageRegistryImpl
+ <vmArgs>-Declipse.ignoreApp=true -Dosgi.noShutdown=true -Dorg.eclipse.emf.ecore.EPackage.Registry.INSTANCE=org.eclipse.emf.ecore.impl.EPackageRegistryImpl
</vmArgs>
<vmArgsMac>-XstartOnFirstThread -Dorg.eclipse.swt.internal.carbon.smallFonts
</vmArgsMac>
@@ -38,12 +38,13 @@
<plugin id="org.apache.felix.gogo.runtime"/>
<plugin id="org.apache.felix.gogo.shell"/>
<plugin id="org.apache.felix.scr"/>
- <plugin id="org.apache.log4j"/>
<plugin id="org.eclipse.app4mc.amalthea.model"/>
<plugin id="org.eclipse.app4mc.amlt2systemc.m2t"/>
<plugin id="org.eclipse.app4mc.transformation"/>
- <plugin id="org.eclipse.app4mc.transformation.log4j.configuration" fragment="true"/>
<plugin id="org.eclipse.app4mc.transformation.starter"/>
+ <plugin id="org.eclipse.app4mc.util.sessionlog"/>
+ <plugin id="org.eclipse.app4mc.util.sessionlog.console"/>
+ <plugin id="org.eclipse.app4mc.util.sessionlog.file"/>
<plugin id="org.eclipse.emf.common"/>
<plugin id="org.eclipse.emf.ecore"/>
<plugin id="org.eclipse.emf.ecore.xcore.lib"/>
@@ -57,14 +58,14 @@
<plugin id="org.eclipse.osgi.util"/>
<plugin id="org.eclipse.xtext.xbase.lib"/>
<plugin id="org.slf4j.api"/>
- <plugin id="org.slf4j.impl.log4j12" fragment="true"/>
</plugins>
<configurations>
<plugin id="org.apache.felix.scr" autoStart="true" startLevel="2" />
+ <plugin id="org.eclipse.app4mc.util.sessionlog.console" autoStart="true" startLevel="3" />
+ <plugin id="org.eclipse.app4mc.util.sessionlog.file" autoStart="true" startLevel="3" />
<plugin id="org.eclipse.equinox.cm" autoStart="true" startLevel="2" />
<plugin id="org.eclipse.equinox.event" autoStart="true" startLevel="2" />
- <property name="log4j.configuration" value="headless_log4j.xml" />
</configurations>
<preferencesInfo>
diff --git a/simulation_generator/app4mc.sim/releng/org.eclipse.app4mc.amlt2systemc.product/input/waters/WATERS-2017_FMTV-Model.amxmi b/simulation_generator/app4mc.sim/releng/org.eclipse.app4mc.amlt2systemc.product/input/waters/WATERS-2017_FMTV-Model.amxmi
new file mode 100644
index 0000000..b8bc4e7
--- /dev/null
+++ b/simulation_generator/app4mc.sim/releng/org.eclipse.app4mc.amlt2systemc.product/input/waters/WATERS-2017_FMTV-Model.amxmi
@@ -0,0 +1,174674 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<am:Amalthea xmlns:am="http://app4mc.eclipse.org/amalthea/1.0.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmi:version="2.0">
+ <customProperties key="origin">
+ <value xsi:type="am:StringObject" value="https://waters2017.inria.fr/challenge/" />
+ </customProperties>
+ <swModel>
+ <tasks xmi:id="Angle_Sync?type=Task" name="Angle_Sync" stimuli="periodic_6660us?type=PeriodicStimulus" preemption="preemptive" multipleTaskActivationLimit="1">
+ <customProperties key="priority">
+ <value xsi:type="am:StringObject" value="14" />
+ </customProperties>
+ <activityGraph>
+ <items xsi:type="am:Group" name="CS_Angle_Sync" ordered="true">
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_0?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_1?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_2?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_3?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_4?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_5?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_6?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_7?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_8?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_9?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_10?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_11?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_12?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_13?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_14?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_15?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_16?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_17?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_18?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_19?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_20?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_21?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_22?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_23?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_24?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_25?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_26?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_27?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_28?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_29?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_30?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_31?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_32?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_33?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_34?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_35?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_36?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_37?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_38?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_39?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_40?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_41?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_42?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_43?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_44?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_45?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_46?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_47?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_48?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_49?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_50?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_51?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_52?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_53?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_54?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_55?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_56?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_57?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_58?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_59?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_60?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_61?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_62?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_63?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_64?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_65?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_66?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_67?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_68?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_69?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_70?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_71?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_72?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_73?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_74?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_75?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_76?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_77?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_78?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_79?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_80?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_81?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_82?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_83?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_84?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_85?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_86?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_87?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_88?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_89?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_90?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_91?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_92?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_93?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_94?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_95?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_96?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_97?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_98?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_99?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_100?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_101?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_102?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_103?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_104?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_105?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_106?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_107?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_108?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_109?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_110?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_111?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_112?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_113?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_114?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_115?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_116?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_117?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_118?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_119?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_120?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_121?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_122?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_123?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_124?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_125?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_126?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_127?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_128?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_129?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_130?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_131?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_132?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_133?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_134?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_135?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_136?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_137?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_138?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_139?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_140?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_141?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_142?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_143?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_144?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_145?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_6660us_146?type=Runnable" />
+ </items>
+ </activityGraph>
+ </tasks>
+ <tasks xmi:id="ISR_1?type=Task" name="ISR_1" stimuli="sporadic_9500us_10500us_ISR_1?type=RelativePeriodicStimulus" preemption="preemptive" multipleTaskActivationLimit="1">
+ <customProperties key="priority">
+ <value xsi:type="am:StringObject" value="32" />
+ </customProperties>
+ <activityGraph>
+ <items xsi:type="am:Group" name="CS_ISR_1" ordered="true">
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_9500us_10500us_1?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_9500us_10500us_4?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_9500us_10500us_5?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_9500us_10500us_7?type=Runnable" />
+ </items>
+ </activityGraph>
+ </tasks>
+ <tasks xmi:id="ISR_10?type=Task" name="ISR_10" stimuli="sporadic_700us_800us_ISR_10?type=RelativePeriodicStimulus" preemption="preemptive" multipleTaskActivationLimit="1">
+ <customProperties key="priority">
+ <value xsi:type="am:StringObject" value="40" />
+ </customProperties>
+ <activityGraph>
+ <items xsi:type="am:Group" name="CS_ISR_10" ordered="true">
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_700us_800us_0?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_700us_800us_1?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_700us_800us_2?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_700us_800us_3?type=Runnable" />
+ </items>
+ </activityGraph>
+ </tasks>
+ <tasks xmi:id="ISR_11?type=Task" name="ISR_11" stimuli="sporadic_5000us_5100us_ISR_11?type=RelativePeriodicStimulus" preemption="preemptive" multipleTaskActivationLimit="1">
+ <customProperties key="priority">
+ <value xsi:type="am:StringObject" value="34" />
+ </customProperties>
+ <activityGraph>
+ <items xsi:type="am:Group" name="CS_ISR_11" ordered="true">
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_5000us_5100us_0?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_5000us_5100us_1?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_5000us_5100us_2?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_5000us_5100us_3?type=Runnable" />
+ </items>
+ </activityGraph>
+ </tasks>
+ <tasks xmi:id="ISR_2?type=Task" name="ISR_2" stimuli="sporadic_9500us_10500us_ISR_2?type=RelativePeriodicStimulus" preemption="preemptive" multipleTaskActivationLimit="1">
+ <customProperties key="priority">
+ <value xsi:type="am:StringObject" value="31" />
+ </customProperties>
+ <activityGraph>
+ <items xsi:type="am:Group" name="CS_ISR_2" ordered="true">
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_9500us_10500us_2?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_9500us_10500us_6?type=Runnable" />
+ </items>
+ </activityGraph>
+ </tasks>
+ <tasks xmi:id="ISR_3?type=Task" name="ISR_3" stimuli="sporadic_9500us_10500us_ISR_3?type=RelativePeriodicStimulus" preemption="preemptive" multipleTaskActivationLimit="1">
+ <customProperties key="priority">
+ <value xsi:type="am:StringObject" value="30" />
+ </customProperties>
+ <activityGraph>
+ <items xsi:type="am:Group" name="CS_ISR_3" ordered="true">
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_9500us_10500us_0?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_9500us_10500us_3?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_9500us_10500us_8?type=Runnable" />
+ </items>
+ </activityGraph>
+ </tasks>
+ <tasks xmi:id="ISR_4?type=Task" name="ISR_4" stimuli="sporadic_1500us_1700us_ISR_4?type=RelativePeriodicStimulus" preemption="preemptive" multipleTaskActivationLimit="1">
+ <customProperties key="priority">
+ <value xsi:type="am:StringObject" value="37" />
+ </customProperties>
+ <activityGraph>
+ <items xsi:type="am:Group" name="CS_ISR_4" ordered="true">
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_1500us_1700us_0?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_1500us_1700us_1?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_1500us_1700us_2?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_1500us_1700us_3?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_1500us_1700us_4?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_1500us_1700us_5?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_1500us_1700us_6?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_1500us_1700us_7?type=Runnable" />
+ </items>
+ </activityGraph>
+ </tasks>
+ <tasks xmi:id="ISR_5?type=Task" name="ISR_5" stimuli="sporadic_900us_1000us_ISR_5?type=RelativePeriodicStimulus" preemption="preemptive" multipleTaskActivationLimit="1">
+ <customProperties key="priority">
+ <value xsi:type="am:StringObject" value="39" />
+ </customProperties>
+ <activityGraph>
+ <items xsi:type="am:Group" name="CS_ISR_5" ordered="true">
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_900us_1000us_0?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_900us_1000us_1?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_900us_1000us_2?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_900us_1000us_3?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_900us_1000us_4?type=Runnable" />
+ </items>
+ </activityGraph>
+ </tasks>
+ <tasks xmi:id="ISR_6?type=Task" name="ISR_6" stimuli="sporadic_1100us_1200us_ISR_6?type=RelativePeriodicStimulus" preemption="preemptive" multipleTaskActivationLimit="1">
+ <customProperties key="priority">
+ <value xsi:type="am:StringObject" value="38" />
+ </customProperties>
+ <activityGraph>
+ <items xsi:type="am:Group" name="CS_ISR_6" ordered="true">
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_1100us_1200us_0?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_1100us_1200us_1?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_1100us_1200us_2?type=Runnable" />
+ </items>
+ </activityGraph>
+ </tasks>
+ <tasks xmi:id="ISR_7?type=Task" name="ISR_7" stimuli="sporadic_4900us_5050us_ISR_7?type=RelativePeriodicStimulus" preemption="preemptive" multipleTaskActivationLimit="1">
+ <customProperties key="priority">
+ <value xsi:type="am:StringObject" value="35" />
+ </customProperties>
+ <activityGraph>
+ <items xsi:type="am:Group" name="CS_ISR_7" ordered="true">
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_4900us_5050us_0?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_4900us_5050us_1?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_4900us_5050us_2?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_4900us_5050us_3?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_4900us_5050us_4?type=Runnable" />
+ </items>
+ </activityGraph>
+ </tasks>
+ <tasks xmi:id="ISR_8?type=Task" name="ISR_8" stimuli="sporadic_1700us_1800us_ISR_8?type=RelativePeriodicStimulus" preemption="preemptive" multipleTaskActivationLimit="1">
+ <customProperties key="priority">
+ <value xsi:type="am:StringObject" value="36" />
+ </customProperties>
+ <activityGraph>
+ <items xsi:type="am:Group" name="CS_ISR_8" ordered="true">
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_1700us_1800us_0?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_1700us_1800us_1?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_1700us_1800us_2?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_1700us_1800us_3?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_1700us_1800us_4?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_1700us_1800us_5?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_1700us_1800us_6?type=Runnable" />
+ </items>
+ </activityGraph>
+ </tasks>
+ <tasks xmi:id="ISR_9?type=Task" name="ISR_9" stimuli="sporadic_6000us_6100us_ISR_9?type=RelativePeriodicStimulus" preemption="preemptive" multipleTaskActivationLimit="1">
+ <customProperties key="priority">
+ <value xsi:type="am:StringObject" value="33" />
+ </customProperties>
+ <activityGraph>
+ <items xsi:type="am:Group" name="CS_ISR_9" ordered="true">
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_6000us_6100us_0?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_sporadic_6000us_6100us_1?type=Runnable" />
+ </items>
+ </activityGraph>
+ </tasks>
+ <tasks xmi:id="Task_1000ms?type=Task" name="Task_1000ms" stimuli="periodic_1000ms?type=PeriodicStimulus" preemption="cooperative" multipleTaskActivationLimit="1">
+ <customProperties key="priority">
+ <value xsi:type="am:StringObject" value="5" />
+ </customProperties>
+ <activityGraph>
+ <items xsi:type="am:Group" name="CS_Task_1000ms" ordered="true">
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1000ms_0?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1000ms_1?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1000ms_2?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1000ms_3?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1000ms_4?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1000ms_5?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1000ms_6?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1000ms_7?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1000ms_8?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1000ms_9?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1000ms_10?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1000ms_11?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1000ms_12?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1000ms_13?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1000ms_14?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1000ms_15?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1000ms_16?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1000ms_17?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1000ms_18?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1000ms_19?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1000ms_20?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1000ms_21?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1000ms_22?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1000ms_23?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1000ms_24?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1000ms_25?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1000ms_26?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1000ms_27?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1000ms_28?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1000ms_29?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1000ms_30?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1000ms_31?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1000ms_32?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1000ms_33?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1000ms_34?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1000ms_35?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1000ms_36?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1000ms_37?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1000ms_38?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1000ms_39?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1000ms_40?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1000ms_41?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1000ms_42?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1000ms_43?type=Runnable" />
+ </items>
+ </activityGraph>
+ </tasks>
+ <tasks xmi:id="Task_100ms?type=Task" name="Task_100ms" stimuli="periodic_100ms?type=PeriodicStimulus" preemption="cooperative" multipleTaskActivationLimit="1">
+ <customProperties key="priority">
+ <value xsi:type="am:StringObject" value="7" />
+ </customProperties>
+ <activityGraph>
+ <items xsi:type="am:Group" name="CS_Task_100ms" ordered="true">
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_0?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_1?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_2?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_3?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_4?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_5?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_6?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_7?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_8?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_9?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_10?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_11?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_12?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_13?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_14?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_15?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_16?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_17?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_18?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_19?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_20?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_21?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_22?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_23?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_24?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_25?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_26?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_27?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_28?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_29?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_30?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_31?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_32?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_33?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_34?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_35?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_36?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_37?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_38?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_39?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_40?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_41?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_42?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_43?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_44?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_45?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_46?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_47?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_48?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_49?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_50?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_51?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_52?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_53?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_54?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_55?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_56?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_57?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_58?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_59?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_60?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_61?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_62?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_63?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_64?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_65?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_66?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_67?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_68?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_69?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_70?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_71?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_72?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_73?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_74?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_75?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_76?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_77?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_78?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_79?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_80?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_81?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_82?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_83?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_84?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_85?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_86?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_87?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_88?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_89?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_90?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_91?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_92?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_93?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_94?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_95?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_96?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_97?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_98?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_99?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_100?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_101?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_102?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_103?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_104?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_105?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_106?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_107?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_108?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_109?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_110?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_111?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_112?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_113?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_114?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_115?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_116?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_117?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_118?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_119?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_120?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_121?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_122?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_123?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_124?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_125?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_126?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_127?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_128?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_129?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_130?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_131?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_132?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_133?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_134?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_135?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_136?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_137?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_138?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_139?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_140?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_141?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_142?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_143?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_144?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_145?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_146?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_147?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_148?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_149?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_150?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_151?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_152?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_153?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_154?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_155?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_156?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_157?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_158?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_159?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_160?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_161?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_162?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_163?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_164?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_165?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_166?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_167?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_168?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_169?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_170?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_171?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_172?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_173?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_174?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_175?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_176?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_177?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_178?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_179?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_180?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_181?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_182?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_183?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_184?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_185?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_186?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_187?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_188?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_189?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_190?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_191?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_192?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_193?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_194?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_195?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_196?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_197?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_198?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_199?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_200?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_201?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_202?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_203?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_204?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_205?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_206?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_207?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_208?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_209?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_210?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_211?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_212?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_213?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_214?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_215?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_216?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_217?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_218?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_219?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_220?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_221?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_222?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_223?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_224?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_225?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_226?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_227?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_228?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_229?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_230?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_231?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_232?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_233?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_234?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_235?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_236?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_237?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_238?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_239?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_240?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_241?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_242?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_243?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_244?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_245?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_100ms_246?type=Runnable" />
+ </items>
+ </activityGraph>
+ </tasks>
+ <tasks xmi:id="Task_10ms?type=Task" name="Task_10ms" stimuli="periodic_10ms?type=PeriodicStimulus" preemption="preemptive" multipleTaskActivationLimit="1">
+ <customProperties key="priority">
+ <value xsi:type="am:StringObject" value="11" />
+ </customProperties>
+ <activityGraph>
+ <items xsi:type="am:Group" name="CS_Task_10ms" ordered="true">
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_0?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_1?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_2?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_3?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_4?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_5?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_6?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_7?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_8?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_9?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_10?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_11?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_12?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_13?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_14?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_15?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_16?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_17?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_18?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_19?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_20?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_21?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_22?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_23?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_24?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_25?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_26?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_27?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_28?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_29?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_30?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_31?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_32?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_33?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_34?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_35?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_36?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_37?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_38?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_39?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_40?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_41?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_42?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_43?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_44?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_45?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_46?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_47?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_48?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_49?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_50?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_51?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_52?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_53?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_54?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_55?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_56?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_57?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_58?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_59?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_60?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_61?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_62?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_63?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_64?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_65?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_66?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_67?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_68?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_69?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_70?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_71?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_72?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_73?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_74?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_75?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_76?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_77?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_78?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_79?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_80?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_81?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_82?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_83?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_84?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_85?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_86?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_87?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_88?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_89?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_90?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_91?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_92?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_93?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_94?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_95?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_96?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_97?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_98?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_99?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_100?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_101?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_102?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_103?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_104?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_105?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_106?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_107?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_108?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_109?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_110?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_111?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_112?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_113?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_114?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_115?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_116?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_117?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_118?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_119?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_120?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_121?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_122?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_123?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_124?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_125?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_126?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_127?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_128?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_129?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_130?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_131?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_132?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_133?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_134?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_135?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_136?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_137?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_138?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_139?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_140?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_141?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_142?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_143?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_144?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_145?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_146?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_147?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_148?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_149?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_150?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_151?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_152?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_153?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_154?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_155?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_156?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_157?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_158?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_159?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_160?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_161?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_162?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_163?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_164?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_165?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_166?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_167?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_168?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_169?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_170?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_171?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_172?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_173?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_174?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_175?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_176?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_177?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_178?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_179?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_180?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_181?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_182?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_183?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_184?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_185?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_186?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_187?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_188?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_189?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_190?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_191?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_192?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_193?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_194?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_195?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_196?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_197?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_198?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_199?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_200?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_201?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_202?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_203?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_204?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_205?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_206?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_207?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_208?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_209?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_210?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_211?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_212?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_213?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_214?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_215?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_216?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_217?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_218?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_219?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_220?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_221?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_222?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_223?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_224?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_225?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_226?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_227?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_228?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_229?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_230?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_231?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_232?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_233?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_234?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_235?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_236?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_237?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_238?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_239?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_240?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_241?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_242?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_243?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_244?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_245?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_246?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_247?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_248?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_249?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_250?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_251?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_252?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_253?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_254?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_255?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_256?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_257?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_258?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_259?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_260?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_261?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_262?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_263?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_264?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_265?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_266?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_267?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_268?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_269?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_270?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_271?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_272?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_273?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_274?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_275?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_276?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_277?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_278?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_279?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_280?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_281?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_282?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_283?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_284?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_285?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_286?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_287?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_288?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_289?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_290?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_291?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_292?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_293?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_294?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_295?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_296?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_297?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_298?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_299?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_300?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_301?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_302?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_10ms_303?type=Runnable" />
+ </items>
+ </activityGraph>
+ </tasks>
+ <tasks xmi:id="Task_1ms?type=Task" name="Task_1ms" stimuli="periodic_1ms?type=PeriodicStimulus" preemption="preemptive" multipleTaskActivationLimit="1">
+ <customProperties key="priority">
+ <value xsi:type="am:StringObject" value="15" />
+ </customProperties>
+ <activityGraph>
+ <items xsi:type="am:Group" name="CS_Task_1ms" ordered="true">
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1ms_0?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1ms_1?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1ms_2?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1ms_3?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1ms_4?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1ms_5?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1ms_6?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1ms_7?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1ms_8?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1ms_9?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1ms_10?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1ms_11?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1ms_12?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1ms_13?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1ms_14?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1ms_15?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1ms_16?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1ms_17?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1ms_18?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1ms_19?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1ms_20?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1ms_21?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1ms_22?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1ms_23?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1ms_24?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1ms_25?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1ms_26?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1ms_27?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1ms_28?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1ms_29?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1ms_30?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1ms_31?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1ms_32?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1ms_33?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1ms_34?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1ms_35?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1ms_36?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1ms_37?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1ms_38?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1ms_39?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1ms_40?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_1ms_41?type=Runnable" />
+ </items>
+ </activityGraph>
+ </tasks>
+ <tasks xmi:id="Task_200ms?type=Task" name="Task_200ms" stimuli="periodic_200ms?type=PeriodicStimulus" preemption="cooperative" multipleTaskActivationLimit="1">
+ <customProperties key="priority">
+ <value xsi:type="am:StringObject" value="6" />
+ </customProperties>
+ <activityGraph>
+ <items xsi:type="am:Group" name="CS_Task_200ms" ordered="true">
+ <items xsi:type="am:RunnableCall" runnable="Runnable_200ms_0?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_200ms_1?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_200ms_2?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_200ms_3?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_200ms_4?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_200ms_5?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_200ms_6?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_200ms_7?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_200ms_8?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_200ms_9?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_200ms_10?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_200ms_11?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_200ms_12?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_200ms_13?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_200ms_14?type=Runnable" />
+ </items>
+ </activityGraph>
+ </tasks>
+ <tasks xmi:id="Task_20ms?type=Task" name="Task_20ms" stimuli="periodic_20ms?type=PeriodicStimulus" preemption="cooperative" multipleTaskActivationLimit="1">
+ <customProperties key="priority">
+ <value xsi:type="am:StringObject" value="9" />
+ </customProperties>
+ <activityGraph>
+ <items xsi:type="am:Group" name="CS_Task_20ms" ordered="true">
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_0?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_1?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_2?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_3?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_4?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_5?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_6?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_7?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_8?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_9?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_10?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_11?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_12?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_13?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_14?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_15?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_16?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_17?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_18?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_19?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_20?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_21?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_22?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_23?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_24?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_25?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_26?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_27?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_28?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_29?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_30?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_31?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_32?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_33?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_34?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_35?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_36?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_37?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_38?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_39?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_40?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_41?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_42?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_43?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_44?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_45?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_46?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_47?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_48?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_49?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_50?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_51?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_52?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_53?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_54?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_55?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_56?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_57?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_58?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_59?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_60?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_61?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_62?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_63?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_64?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_65?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_66?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_67?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_68?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_69?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_70?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_71?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_72?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_73?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_74?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_75?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_76?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_77?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_78?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_79?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_80?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_81?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_82?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_83?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_84?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_85?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_86?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_87?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_88?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_89?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_90?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_91?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_92?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_93?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_94?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_95?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_96?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_97?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_98?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_99?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_100?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_101?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_102?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_103?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_104?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_105?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_106?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_107?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_108?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_109?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_110?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_111?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_112?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_113?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_114?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_115?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_116?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_117?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_118?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_119?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_120?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_121?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_122?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_123?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_124?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_125?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_126?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_127?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_128?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_129?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_130?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_131?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_132?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_133?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_134?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_135?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_136?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_137?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_138?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_139?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_140?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_141?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_142?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_143?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_144?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_145?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_146?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_147?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_148?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_149?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_150?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_151?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_152?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_153?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_154?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_155?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_156?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_157?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_158?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_159?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_160?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_161?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_162?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_163?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_164?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_165?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_166?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_167?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_168?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_169?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_170?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_171?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_172?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_173?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_174?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_175?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_176?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_177?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_178?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_179?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_180?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_181?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_182?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_183?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_184?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_185?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_186?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_187?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_188?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_189?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_190?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_191?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_192?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_193?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_194?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_195?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_196?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_197?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_198?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_199?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_200?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_201?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_202?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_203?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_204?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_205?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_206?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_207?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_208?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_209?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_210?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_211?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_212?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_213?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_214?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_215?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_216?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_217?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_218?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_219?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_220?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_221?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_222?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_223?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_224?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_225?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_226?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_227?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_228?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_229?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_230?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_231?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_232?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_233?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_234?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_235?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_236?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_237?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_238?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_239?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_240?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_241?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_242?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_243?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_244?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_245?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_246?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_247?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_248?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_249?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_250?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_251?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_252?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_253?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_254?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_255?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_256?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_257?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_258?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_259?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_260?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_261?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_262?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_263?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_264?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_265?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_266?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_267?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_268?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_269?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_270?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_271?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_272?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_273?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_274?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_275?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_276?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_277?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_278?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_279?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_280?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_281?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_282?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_283?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_284?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_285?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_286?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_287?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_288?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_289?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_290?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_291?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_292?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_293?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_294?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_295?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_296?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_297?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_298?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_299?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_300?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_301?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_302?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_303?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_304?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_305?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_20ms_306?type=Runnable" />
+ </items>
+ </activityGraph>
+ </tasks>
+ <tasks xmi:id="Task_2ms?type=Task" name="Task_2ms" stimuli="periodic_2ms?type=PeriodicStimulus" preemption="preemptive" multipleTaskActivationLimit="1">
+ <customProperties key="priority">
+ <value xsi:type="am:StringObject" value="13" />
+ </customProperties>
+ <activityGraph>
+ <items xsi:type="am:Group" name="CS_Task_2ms" ordered="true">
+ <items xsi:type="am:RunnableCall" runnable="Runnable_2ms_0?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_2ms_1?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_2ms_2?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_2ms_3?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_2ms_4?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_2ms_5?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_2ms_6?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_2ms_7?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_2ms_8?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_2ms_9?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_2ms_10?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_2ms_11?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_2ms_12?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_2ms_13?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_2ms_14?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_2ms_15?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_2ms_16?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_2ms_17?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_2ms_18?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_2ms_19?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_2ms_20?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_2ms_21?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_2ms_22?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_2ms_23?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_2ms_24?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_2ms_25?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_2ms_26?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_2ms_27?type=Runnable" />
+ </items>
+ </activityGraph>
+ </tasks>
+ <tasks xmi:id="Task_50ms?type=Task" name="Task_50ms" stimuli="periodic_50ms?type=PeriodicStimulus" preemption="cooperative" multipleTaskActivationLimit="1">
+ <customProperties key="priority">
+ <value xsi:type="am:StringObject" value="8" />
+ </customProperties>
+ <activityGraph>
+ <items xsi:type="am:Group" name="CS_Task_50ms" ordered="true">
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_0?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_1?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_2?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_3?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_4?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_5?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_6?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_7?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_8?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_9?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_10?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_11?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_12?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_13?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_14?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_15?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_16?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_17?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_18?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_19?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_20?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_21?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_22?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_23?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_24?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_25?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_26?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_27?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_28?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_29?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_30?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_31?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_32?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_33?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_34?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_35?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_36?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_37?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_38?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_39?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_40?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_41?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_42?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_43?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_44?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_50ms_45?type=Runnable" />
+ </items>
+ </activityGraph>
+ </tasks>
+ <tasks xmi:id="Task_5ms?type=Task" name="Task_5ms" stimuli="periodic_5ms?type=PeriodicStimulus" preemption="preemptive" multipleTaskActivationLimit="1">
+ <customProperties key="priority">
+ <value xsi:type="am:StringObject" value="12" />
+ </customProperties>
+ <activityGraph>
+ <items xsi:type="am:Group" name="CS_Task_5ms" ordered="true">
+ <items xsi:type="am:RunnableCall" runnable="Runnable_5ms_0?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_5ms_1?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_5ms_2?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_5ms_3?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_5ms_4?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_5ms_5?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_5ms_6?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_5ms_7?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_5ms_8?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_5ms_9?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_5ms_10?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_5ms_11?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_5ms_12?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_5ms_13?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_5ms_14?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_5ms_15?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_5ms_16?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_5ms_17?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_5ms_18?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_5ms_19?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_5ms_20?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_5ms_21?type=Runnable" />
+ <items xsi:type="am:RunnableCall" runnable="Runnable_5ms_22?type=Runnable" />
+ </items>
+ </activityGraph>
+ </tasks>
+ <runnables xmi:id="Runnable_10ms_0?type=Runnable" name="Runnable_10ms_0" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4071?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1867?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2596?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1209?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_699?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3550?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_406?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6510?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8680?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="427" upperBound="561" average="442.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1867?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_944?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3281?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4619?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4281?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4901?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_540?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1741?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1349?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3942?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_0?type=Runnable" name="Runnable_100ms_0" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2614?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1030?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1374?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4735?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3510?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_712?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4983?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4434?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5282?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5530?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5567?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5749?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6582?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7346?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8974?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="3619" upperBound="6156" average="5290.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_641?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4730?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9289?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_0?type=Runnable" name="Runnable_6660us_0" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4322?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4227?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2037?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4805?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7010?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7105?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7971?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="452" upperBound="1782" average="979.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3805?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_700?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_435?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4336?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_774?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4936?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_sporadic_700us_800us_0?type=Runnable" name="Runnable_sporadic_700us_800us_0" activations="sporadic_700us_800us?type=SporadicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_5564?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6354?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8480?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="902" upperBound="1817" average="1252.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_232?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_0?type=Runnable" name="Runnable_20ms_0" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4881?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6829?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="927" upperBound="12478" average="7557.0" pRemainPromille="5.0E-4" />
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_1?type=Runnable" name="Runnable_10ms_1" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2655?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3605?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4725?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1646?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_893?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1845?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3600?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1690?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_770?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3961?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7099?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1739" upperBound="3253" average="2502.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1198?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_948?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4071?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1690?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_161?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1706?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3637?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_2?type=Runnable" name="Runnable_10ms_2" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_448?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1760?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1766?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3139?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_240?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_683?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_414?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5392?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6547?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6624?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8291?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="143" upperBound="1273" average="670.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3103?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2418?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4747?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3622?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4643?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_2ms_0?type=Runnable" name="Runnable_2ms_0" activations="periodic_2ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_6652?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7485?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7772?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8173?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="2491" upperBound="4523" average="3717.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9153?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9462?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_3?type=Runnable" name="Runnable_10ms_3" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1098?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1907?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6644?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7085?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="12545" upperBound="23334" average="15488.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_87?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1484?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3035?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_1?type=Runnable" name="Runnable_100ms_1" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4117?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2703?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4092?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1062?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_163?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_263?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6134?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7255?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8605?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8796?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="347" upperBound="716" average="523.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1062?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4779?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4931?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_57?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1432?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_23?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3563?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3927?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1133?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_1?type=Runnable" name="Runnable_20ms_1" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2494?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4160?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2096?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_823?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_417?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3000?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3826?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7591?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8451?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="15175" upperBound="22953" average="20142.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1838?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4372?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2883?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_405?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9305?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9526?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_4?type=Runnable" name="Runnable_10ms_4" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2557?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2304?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2792?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_327?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1189?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1036?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1469?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4350?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3557?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2619?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3714?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_258?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3031?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5463?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5989?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7574?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8461?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8803?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1846" upperBound="9278" average="6888.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1565?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_448?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1390?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1189?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4868?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1999?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9434?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_1?type=Runnable" name="Runnable_6660us_1" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3011?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1218?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2135?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3350?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6323?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="4078" upperBound="7300" average="4613.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_839?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1738?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4227?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1327?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9095?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_2?type=Runnable" name="Runnable_100ms_2" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1457?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1835?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4685?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3603?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5635?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5777?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5922?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6419?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6514?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1145" upperBound="8943" average="6370.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3185?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3603?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4983?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1120?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_263?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1282?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2084?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2230?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9733?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_3?type=Runnable" name="Runnable_100ms_3" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3163?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4710?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1407?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3747?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2751?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_173?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1437?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4729?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_427?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5427?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="12018" upperBound="25260" average="20602.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_830?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3510?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_173?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1981?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9235?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9360?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_4?type=Runnable" name="Runnable_100ms_4" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2913?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1488?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4142?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2817?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2250?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7974?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8507?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8741?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1440" upperBound="11668" average="7040.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1488?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4654?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4142?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_899?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3991?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_2?type=Runnable" name="Runnable_6660us_2" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3957?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4810?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3556?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_912?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7496?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="412" upperBound="580" average="529.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4810?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_2?type=Runnable" name="Runnable_20ms_2" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2377?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3133?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_973?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_500?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1336?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5765?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6818?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7102?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="4685" upperBound="8086" average="5179.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3000?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9605?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_3?type=Runnable" name="Runnable_6660us_3" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1398?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2450?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3341?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_358?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2104?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2734?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6350?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6898?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1233" upperBound="11430" average="7172.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1084?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3425?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4011?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2350?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_993?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_5?type=Runnable" name="Runnable_100ms_5" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4327?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4838?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_428?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1007?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_12?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6905?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7635?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7930?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8129?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8197?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8643?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="547" upperBound="963" average="663.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1407?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1945?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1408?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3021?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_3?type=Runnable" name="Runnable_20ms_3" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2699?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_205?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5200?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6291?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8895?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="86" upperBound="640" average="431.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2844?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_5?type=Runnable" name="Runnable_10ms_5" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3188?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4801?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4048?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1969?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2519?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2571?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3153?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_676?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5371?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5452?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5836?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5946?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="83" upperBound="1090" average="780.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3612?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4899?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3600?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3454?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2902?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1969?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_256?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3060?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3122?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2803?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9091?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9224?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_5ms_0?type=Runnable" name="Runnable_5ms_0" activations="periodic_5ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_744?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_586?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1394?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1779?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="4702" upperBound="13442" average="10900.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2492?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3543?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4704?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9944?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_6?type=Runnable" name="Runnable_10ms_6" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4268?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2332?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2648?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4481?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_151?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3996?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4190?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3009?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_594?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5125?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6725?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8669?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="5882" upperBound="10965" average="7954.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2485?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4784?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_905?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1705?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_1ms_0?type=Runnable" name="Runnable_1ms_0" activations="periodic_1ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_849?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5861?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6055?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7325?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8013?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8103?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8401?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="2001" upperBound="5313" average="3115.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9068?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_sporadic_1500us_1700us_0?type=Runnable" name="Runnable_sporadic_1500us_1700us_0" activations="sporadic_1500us_1700us?type=SporadicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_6704?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7146?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7207?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8302?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="4544" upperBound="8821" average="6209.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1779?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_7?type=Runnable" name="Runnable_10ms_7" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2260?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3987?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1032?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_668?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1584?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1551?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1791?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3740?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4409?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_654?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5609?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8769?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="662" upperBound="1443" average="763.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3614?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3750?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1600?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2546?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_992?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1584?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4036?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_710?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9040?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_6?type=Runnable" name="Runnable_100ms_6" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2730?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2763?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6720?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7627?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8960?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="803" upperBound="4081" average="2809.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3429?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3187?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_236?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3174?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9989?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_8?type=Runnable" name="Runnable_10ms_8" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4378?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1972?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3014?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4078?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_367?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7026?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8917?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="7651" upperBound="25286" average="12928.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2432?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4024?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1491?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2249?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_4?type=Runnable" name="Runnable_20ms_4" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2832?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_14?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_129?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_538?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2813?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5173?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7871?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="4236" upperBound="7538" average="6600.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1837?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_9?type=Runnable" name="Runnable_10ms_9" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4701?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3392?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3968?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3771?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5252?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5547?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6241?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6836?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="6308" upperBound="27709" average="20684.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2529?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_565?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2972?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2572?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1651?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3761?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_7?type=Runnable" name="Runnable_100ms_7" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1400?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1895?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2982?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1808?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2056?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4109?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5507?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7135?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8793?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="7717" upperBound="9788" average="7891.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4092?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4767?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1808?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3787?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4258?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3818?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1041?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4229?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9973?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_50ms_0?type=Runnable" name="Runnable_50ms_0" activations="periodic_50ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3192?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3471?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1174?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3409?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3294?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1068?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7052?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7265?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8384?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="4276" upperBound="9312" average="6435.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3651?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_306?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1674?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9030?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_4?type=Runnable" name="Runnable_6660us_4" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2374?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1675?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3520?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3926?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2262?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2010?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5448?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7775?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8096?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8453?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="642" upperBound="1260" average="774.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1126?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3341?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2262?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2917?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_667?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2433?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9195?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9623?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9824?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_1000ms_0?type=Runnable" name="Runnable_1000ms_0" activations="periodic_1000ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_892?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1613?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5553?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5581?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5812?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6049?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8902?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="198" upperBound="355" average="264.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2900?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4952?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2353?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1211?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9404?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9812?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_8?type=Runnable" name="Runnable_100ms_8" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1346?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_201?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5441?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5608?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6405?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8448?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8474?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1455" upperBound="9023" average="4712.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2730?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1346?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_201?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9011?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_2ms_1?type=Runnable" name="Runnable_2ms_1" activations="periodic_2ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_232?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6161?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="240" upperBound="755" average="584.0" pRemainPromille="5.0E-4" />
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_5?type=Runnable" name="Runnable_20ms_5" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_5780?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6933?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="328" upperBound="687" average="575.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3497?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_500?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3871?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4565?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1717?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9510?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_5?type=Runnable" name="Runnable_6660us_5" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3299?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2052?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1875?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_271?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4362?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1474?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5450?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6219?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6579?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8396?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1490" upperBound="32429" average="8014.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_998?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3879?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1318?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3628?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3520?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2010?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4362?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9221?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_9?type=Runnable" name="Runnable_100ms_9" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_722?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4156?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3219?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6139?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7345?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8972?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="11884" upperBound="24290" average="15112.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3466?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2100?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_712?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3598?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1371?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9172?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9448?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9746?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_sporadic_1700us_1800us_0?type=Runnable" name="Runnable_sporadic_1700us_1800us_0" activations="sporadic_1700us_1800us?type=SporadicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_5299?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5330?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7248?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8117?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="2766" upperBound="8433" average="5886.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9982?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_10?type=Runnable" name="Runnable_10ms_10" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1833?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_584?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_862?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1861?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2884?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4088?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_468?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3969?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4091?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3543?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2560?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6124?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7677?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="451" upperBound="1282" average="795.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2655?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_584?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1861?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4048?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_468?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4678?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_586?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_10?type=Runnable" name="Runnable_100ms_10" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1620?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3865?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2409?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_212?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2969?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3364?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5851?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5959?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6097?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6580?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7008?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7527?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7765?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8442?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1929" upperBound="6874" average="5488.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_568?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3257?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2030?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2966?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3234?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9162?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9411?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_6?type=Runnable" name="Runnable_20ms_6" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_5083?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6587?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6713?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8426?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8452?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="589" upperBound="1035" average="608.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_61?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3182?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4959?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9029?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9089?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9489?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9518?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_1000ms_1?type=Runnable" name="Runnable_1000ms_1" activations="periodic_1000ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2150?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4149?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3340?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4971?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3229?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3584?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6015?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6175?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8623?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="319" upperBound="754" average="439.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4209?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3186?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4109?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2031?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3687?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4847?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3584?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_964?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4978?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1613?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9650?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9794?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_7?type=Runnable" name="Runnable_20ms_7" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1532?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_660?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5422?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6764?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8347?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="108" upperBound="1750" average="587.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4753?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4871?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9628?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_11?type=Runnable" name="Runnable_10ms_11" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3912?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4922?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3308?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3361?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3292?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_44?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5210?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5339?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5932?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7039?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8926?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="319" upperBound="1132" average="784.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4911?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2557?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_559?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2792?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4922?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1098?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3243?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1791?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3361?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_416?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_50ms_1?type=Runnable" name="Runnable_50ms_1" activations="periodic_50ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3032?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2590?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4775?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_936?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2508?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2740?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4978?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2151?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6232?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6318?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7333?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8538?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="9345" upperBound="28147" average="19397.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1725?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3471?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1285?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4013?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4093?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9113?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_6?type=Runnable" name="Runnable_6660us_6" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2662?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_932?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3940?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1733?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2945?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5850?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7130?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8301?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8859?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="657" upperBound="1327" average="1043.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_790?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3514?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3277?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_927?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_392?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3350?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9560?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9569?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9619?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9969?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_12?type=Runnable" name="Runnable_10ms_12" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1140?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_399?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_379?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2941?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_622?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_61?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_871?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5677?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6576?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7673?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7798?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8961?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1059" upperBound="9727" average="5737.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2332?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4788?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_410?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1766?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2201?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_399?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_379?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4350?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1439?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1091?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3535?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4145?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9110?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_13?type=Runnable" name="Runnable_10ms_13" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_453?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1156?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3184?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1429?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2002?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4041?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5343?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8210?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="11772" upperBound="16909" average="12575.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1156?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3392?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4454?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3993?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9740?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_8?type=Runnable" name="Runnable_20ms_8" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3125?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2143?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1328?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2928?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1561?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5214?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6440?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7533?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1808" upperBound="7982" average="4138.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1413?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1561?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_11?type=Runnable" name="Runnable_100ms_11" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_644?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4081?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_722?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2812?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8073?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8953?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="2986" upperBound="10069" average="7192.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2253?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1007?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_407?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2641?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_14?type=Runnable" name="Runnable_10ms_14" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1125?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_609?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5203?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5668?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7368?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1178" upperBound="2773" average="2185.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4582?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4088?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2571?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3772?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9890?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_9?type=Runnable" name="Runnable_20ms_9" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1296?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1755?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1050?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5306?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6812?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7027?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8360?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="135" upperBound="596" average="359.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3516?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_12?type=Runnable" name="Runnable_100ms_12" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2423?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4157?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4090?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4180?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_899?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6705?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7181?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7962?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="580" upperBound="3913" average="2842.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_156?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_81?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3091?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1229?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2083?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1028?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_5ms_1?type=Runnable" name="Runnable_5ms_1" activations="periodic_5ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4348?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5925?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6632?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1766" upperBound="2572" average="2097.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9129?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9177?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9426?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_10?type=Runnable" name="Runnable_20ms_10" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4599?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4224?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5315?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7321?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7479?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="3469" upperBound="6739" average="4714.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2236?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4599?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9027?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9285?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9642?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_11?type=Runnable" name="Runnable_20ms_11" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2284?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_386?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5562?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6266?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6630?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7759?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="4339" upperBound="21558" average="11276.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3877?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3092?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_7?type=Runnable" name="Runnable_6660us_7" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1194?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_613?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1771?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1251?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_347?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2656?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2573?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2119?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5247?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5532?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5797?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5918?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6188?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6883?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6983?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7035?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7834?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7951?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8655?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="3973" upperBound="14923" average="11897.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3919?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1004?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4243?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_513?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2573?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_516?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_15?type=Runnable" name="Runnable_10ms_15" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_221?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1405?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4582?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4462?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1103?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2025?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2461?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3611?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5033?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5502?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6102?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6487?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="2730" upperBound="9191" average="5341.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3912?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_327?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1429?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3771?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4436?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2135?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9756?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_13?type=Runnable" name="Runnable_100ms_13" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_341?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4767?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3896?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4118?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6877?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7523?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="105" upperBound="926" average="683.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2528?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4224?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2815?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9674?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_1000ms_2?type=Runnable" name="Runnable_1000ms_2" activations="periodic_1000ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4093?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3024?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4236?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3412?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_686?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6107?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6114?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6366?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6454?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6462?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8088?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8407?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="321" upperBound="553" average="450.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4842?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3024?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3365?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2787?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_686?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9729?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_16?type=Runnable" name="Runnable_10ms_16" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_541?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4819?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1148?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4269?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4628?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5067?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6521?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6696?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7297?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="52" upperBound="271" average="199.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2260?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3937?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4713?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1140?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_497?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_12?type=Runnable" name="Runnable_20ms_12" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4279?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4958?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5155?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6303?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7262?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7356?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7661?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7686?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7703?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8020?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="2257" upperBound="3205" average="2550.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9533?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_13?type=Runnable" name="Runnable_20ms_13" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3861?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6090?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7922?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="731" upperBound="4061" average="2423.0" pRemainPromille="5.0E-4" />
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_14?type=Runnable" name="Runnable_100ms_14" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2305?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3112?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3949?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3019?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_172?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_432?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2404?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_895?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4816?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6154?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7055?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="14822" upperBound="35229" average="24814.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3112?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3949?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1975?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2018?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2570?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2422?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9968?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_14?type=Runnable" name="Runnable_20ms_14" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3642?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1695?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_867?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3691?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2452?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2800?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5370?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6275?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6476?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6848?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7687?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7797?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="470" upperBound="1044" average="621.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_767?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3826?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_1000ms_3?type=Runnable" name="Runnable_1000ms_3" activations="periodic_1000ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1671?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2213?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1685?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5107?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5672?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5756?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6080?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6311?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7752?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8454?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8662?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="266" upperBound="606" average="349.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1237?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3689?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3338?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_520?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_891?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3400?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2213?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9435?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9925?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_8?type=Runnable" name="Runnable_6660us_8" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_464?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4934?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1382?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_218?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3382?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4044?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4641?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5428?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6666?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7486?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7692?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8334?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8597?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8901?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1064" upperBound="4929" average="3795.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1382?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3564?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_218?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_347?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4231?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9379?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_17?type=Runnable" name="Runnable_10ms_17" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2951?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3655?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1053?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7749?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8377?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="219" upperBound="4017" average="3304.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_150?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3461?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_15?type=Runnable" name="Runnable_20ms_15" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_632?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4688?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3764?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1543?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3193?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4026?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5513?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7218?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8671?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="5315" upperBound="19184" average="12391.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1302?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_973?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3193?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_9?type=Runnable" name="Runnable_6660us_9" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2638?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4656?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4670?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3630?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2744?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3985?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_265?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2161?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1269?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_450?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5024?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5337?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5517?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5658?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7564?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7890?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8456?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8459?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="378" upperBound="536" average="500.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3008?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3838?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2161?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4433?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2104?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1341?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_18?type=Runnable" name="Runnable_10ms_18" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3478?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_926?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_843?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2624?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8025?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8563?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="561" upperBound="1021" average="753.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1678?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2944?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3188?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4617?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9636?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9904?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_15?type=Runnable" name="Runnable_100ms_15" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1565?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3863?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4900?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5283?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5625?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7201?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7299?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7799?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8583?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="357" upperBound="679" average="490.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3923?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4386?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1809?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_16?type=Runnable" name="Runnable_100ms_16" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2746?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2142?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1083?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5591?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7757?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="655" upperBound="1509" average="1035.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1024?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4723?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2343?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3966?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2789?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_10?type=Runnable" name="Runnable_6660us_10" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1877?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4528?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4173?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4123?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1323?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6336?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6888?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7457?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8261?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8784?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8989?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="63" upperBound="427" average="240.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_582?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4260?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2726?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3915?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4528?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4173?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4388?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1323?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1769?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9130?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9212?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_50ms_2?type=Runnable" name="Runnable_50ms_2" activations="periodic_50ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_736?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3448?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1327?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3464?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4796?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2223?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8297?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="5632" upperBound="8154" average="6608.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4746?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4164?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2508?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9826?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_19?type=Runnable" name="Runnable_10ms_19" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2050?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1272?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_460?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4195?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3976?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_939?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3244?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4258?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8190?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8338?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="2003" upperBound="15207" average="11714.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2197?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_988?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_460?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4110?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4195?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3410?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2519?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3976?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3751?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9106?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9734?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_11?type=Runnable" name="Runnable_6660us_11" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2783?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4341?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1031?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_139?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4243?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3738?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6238?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6699?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6759?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7808?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7861?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7891?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8371?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8433?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8516?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8646?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="371" upperBound="1159" average="960.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1937?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_139?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2946?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_1000ms_4?type=Runnable" name="Runnable_1000ms_4" activations="periodic_1000ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_859?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_49?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1640?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5747?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8267?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="411" upperBound="752" average="522.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_689?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2589?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3191?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_sporadic_900us_1000us_0?type=Runnable" name="Runnable_sporadic_900us_1000us_0" activations="sporadic_900us_1000us?type=SporadicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_5094?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6272?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6893?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8575?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8653?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="5271" upperBound="9781" average="7500.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9836?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_16?type=Runnable" name="Runnable_20ms_16" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_963?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2705?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_896?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_331?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_630?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7261?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7801?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8278?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="358" upperBound="1394" average="726.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_331?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_630?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_20?type=Runnable" name="Runnable_10ms_20" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1504?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3312?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_709?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3617?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2184?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3532?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1401?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5537?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5611?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5963?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6146?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7125?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="10634" upperBound="39072" average="19845.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_446?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2669?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_506?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1286?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_240?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9735?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9891?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_1000ms_5?type=Runnable" name="Runnable_1000ms_5" activations="periodic_1000ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4347?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2123?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1537?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5007?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5221?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6047?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8781?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="331" upperBound="720" average="480.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4162?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_155?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1280?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_49?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2123?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1685?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_2ms_2?type=Runnable" name="Runnable_2ms_2" activations="periodic_2ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_5396?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5539?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6717?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8555?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="265" upperBound="630" average="411.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_527?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_17?type=Runnable" name="Runnable_100ms_17" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2253?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5607?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7216?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7601?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8965?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="4635" upperBound="10641" average="8363.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_722?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3297?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3237?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_17?type=Runnable" name="Runnable_20ms_17" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_20?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2755?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5135?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6150?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="16280" upperBound="22213" average="17558.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2190?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2755?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_18?type=Runnable" name="Runnable_20ms_18" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4635?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3541?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_458?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_158?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2932?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5202?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6339?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7843?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="4422" upperBound="35273" average="20931.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9964?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_19?type=Runnable" name="Runnable_20ms_19" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3942?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3324?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3431?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1228?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8270?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="894" upperBound="2879" average="1722.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4589?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3260?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3431?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_2ms_3?type=Runnable" name="Runnable_2ms_3" activations="periodic_2ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4576?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6492?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8157?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8374?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="469" upperBound="4009" average="2562.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_646?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9200?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_20?type=Runnable" name="Runnable_20ms_20" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_781?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3189?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3646?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2153?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5276?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="4087" upperBound="7627" average="4355.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2153?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1050?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_21?type=Runnable" name="Runnable_10ms_21" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1117?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2139?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1421?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7990?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8057?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="3159" upperBound="20081" average="11986.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_69?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3289?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4269?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3872?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2806?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1680?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_21?type=Runnable" name="Runnable_20ms_21" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3146?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6040?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6635?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8056?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8284?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="296" upperBound="946" average="624.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4339?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4974?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3357?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4416?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9291?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9602?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9771?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_5ms_2?type=Runnable" name="Runnable_5ms_2" activations="periodic_5ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_285?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1452?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1577" upperBound="4105" average="2656.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_285?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_18?type=Runnable" name="Runnable_100ms_18" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1847?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_280?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3881?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_147?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2239?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_816?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2451?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_442?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3204?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="449" upperBound="1027" average="653.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_147?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2239?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_163?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2451?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3364?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_442?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3428?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1671?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_22?type=Runnable" name="Runnable_10ms_22" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1176?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_604?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4141?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4728?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3669?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_985?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5766?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5835?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6621?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7009?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7059?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8691?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8830?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="685" upperBound="957" average="733.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_604?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1913?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1128?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1535?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1092?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1551?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9149?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_50ms_3?type=Runnable" name="Runnable_50ms_3" activations="periodic_50ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1222?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3006?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_164?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4862?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_538?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1517?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4704?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1507?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5418?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6344?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6634?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="2608" upperBound="3262" average="2751.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_609?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4042?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1823?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1174?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1517?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_22?type=Runnable" name="Runnable_20ms_22" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_728?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5499?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6508?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8471?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8817?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="5716" upperBound="20179" average="11579.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9441?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_23?type=Runnable" name="Runnable_10ms_23" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_127?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_918?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2459?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2983?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1166?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_627?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4894?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6840?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="839" upperBound="4607" average="2812.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4799?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1986?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2951?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2983?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2338?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4968?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3728?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_12?type=Runnable" name="Runnable_6660us_12" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_921?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3585?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3357?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="630" upperBound="6498" average="4781.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_946?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_394?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4503?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4244?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2921?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4942?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9196?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9545?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_23?type=Runnable" name="Runnable_20ms_23" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2804?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4442?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2562?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_612?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4867?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6283?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7656?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="168" upperBound="643" average="519.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1749?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2996?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4881?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9559?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9590?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_24?type=Runnable" name="Runnable_20ms_24" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4940?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1100?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3522?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5260?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6409?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6745?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7272?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8266?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="5958" upperBound="12160" average="10382.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3522?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3367?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_19?type=Runnable" name="Runnable_100ms_19" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3108?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1298?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3762?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="15357" upperBound="19288" average="17047.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4569?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_24?type=Runnable" name="Runnable_10ms_24" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4102?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3958?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1066?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7708?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1370" upperBound="4544" average="3111.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2514?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4308?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2415?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2920?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_668?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1353?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_25?type=Runnable" name="Runnable_20ms_25" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3414?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4199?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2971?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2142?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3107?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1650?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_660?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_599?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5892?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6177?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6686?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6991?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8846?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="3822" upperBound="7420" average="5475.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_570?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2705?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1650?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_562?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_660?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_20?type=Runnable" name="Runnable_100ms_20" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2432?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1940?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_34?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2241?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4353?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6806?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="186" upperBound="1059" average="758.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2266?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1788?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3896?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2380?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_34?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2241?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_1ms_1?type=Runnable" name="Runnable_1ms_1" activations="periodic_1ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_60?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5256?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5729?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7253?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7600?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7855?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8631?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="412" upperBound="751" average="496.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_601?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9257?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9714?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9976?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_25?type=Runnable" name="Runnable_10ms_25" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3443?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2443?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2828?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3284?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2215?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_407?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6867?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7226?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1374" upperBound="14697" average="9694.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_330?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4165?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4078?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1058?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_1ms_2?type=Runnable" name="Runnable_1ms_2" activations="periodic_1ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1532?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4045?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_471?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2045?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6025?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6760?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7505?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8636?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="929" upperBound="1528" average="1036.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3013?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1906?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9596?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_26?type=Runnable" name="Runnable_20ms_26" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1894?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1216?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5211?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5281?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5980?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7162?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7186?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7193?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7730?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8964?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="213" upperBound="715" average="354.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9107?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9306?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9712?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_26?type=Runnable" name="Runnable_10ms_26" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4570?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1361?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2079?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2476?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4400?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5818?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6074?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6971?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7324?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8547?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="664" upperBound="988" average="731.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3778?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3955?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4570?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_62?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2941?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2781?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9037?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_27?type=Runnable" name="Runnable_10ms_27" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_181?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_76?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1567?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2291?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_32?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3172?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6436?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7180?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7644?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="216" upperBound="1482" average="743.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3143?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1504?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3668?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1117?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4869?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9822?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_50ms_4?type=Runnable" name="Runnable_50ms_4" activations="periodic_50ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2973?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5455?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="4026" upperBound="7865" average="5140.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_269?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_406?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9772?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_28?type=Runnable" name="Runnable_10ms_28" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1723?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2944?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3753?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2080?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2569?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_400?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3407?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4386?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5130?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7220?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7490?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7947?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8586?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="394" upperBound="1314" average="817.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4268?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3666?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2426?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1567?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2569?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_400?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4802?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1997?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9420?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_29?type=Runnable" name="Runnable_10ms_29" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1576?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4509?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3223?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_419?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1860?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3908?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2221?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8515?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8689?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="293" upperBound="985" average="658.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2648?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1576?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1361?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1316?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1095?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2150?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9344?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_21?type=Runnable" name="Runnable_100ms_21" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1686?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2015?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2162?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4099?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4795?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5815?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5893?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8242?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="80" upperBound="814" average="635.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_496?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4578?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3865?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4293?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2056?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3222?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4694?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2131?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1474?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3792?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_162?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9799?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_1000ms_6?type=Runnable" name="Runnable_1000ms_6" activations="periodic_1000ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_328?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2526?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6643?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="435" upperBound="636" average="601.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3262?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3758?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3059?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1813?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_197?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1224?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4236?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2526?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9001?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_22?type=Runnable" name="Runnable_100ms_22" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1831?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2659?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3304?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_423?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6810?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8077?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8162?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1740" upperBound="9513" average="6560.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_40?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_404?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4515?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9302?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9325?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9724?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9852?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_1000ms_7?type=Runnable" name="Runnable_1000ms_7" activations="periodic_1000ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4307?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2245?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1489?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5285?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6054?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6954?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8512?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="463" upperBound="723" average="590.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1968?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3878?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3170?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_413?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1489?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1124?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3229?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9839?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_27?type=Runnable" name="Runnable_20ms_27" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3054?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2811?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_371?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2442?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1470?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5172?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7738?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8756?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="4512" upperBound="18539" average="16153.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2143?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3737?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9933?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_28?type=Runnable" name="Runnable_20ms_28" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_883?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_993?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2401?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1719?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5074?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8274?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="231" upperBound="653" average="500.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3882?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9579?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9844?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_23?type=Runnable" name="Runnable_100ms_23" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1252?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3930?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4892?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3932?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5389?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7086?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7395?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8137?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8470?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="319" upperBound="755" average="590.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3930?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4892?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2989?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2434?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9804?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_24?type=Runnable" name="Runnable_100ms_24" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3778?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1134?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1149?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5595?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5809?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7169?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1450" upperBound="3813" average="2675.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1149?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_594?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1871?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1953?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9600?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9863?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_30?type=Runnable" name="Runnable_10ms_30" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3984?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1642?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5912?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="2359" upperBound="3944" average="2953.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1723?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3984?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1032?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1687?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4462?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3146?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2144?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_31?type=Runnable" name="Runnable_10ms_31" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3748?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4295?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="151" upperBound="276" average="206.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2784?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4102?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3320?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1036?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4385?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4934?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_25?type=Runnable" name="Runnable_100ms_25" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_5150?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5909?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7343?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8247?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8641?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="152" upperBound="250" average="191.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_428?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_825?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9790?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_13?type=Runnable" name="Runnable_6660us_13" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2072?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1525?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3724?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3501?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1698?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1745?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1601?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6831?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6917?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8142?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="3142" upperBound="16447" average="9823.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2052?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_194?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1638?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_26?type=Runnable" name="Runnable_100ms_26" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4190?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_156?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_969?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4059?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6569?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6918?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7655?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="23328" upperBound="33507" average="27193.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_969?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2751?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2701?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_551?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4270?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_29?type=Runnable" name="Runnable_20ms_29" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3553?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3866?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5626?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7420?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8914?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="8870" upperBound="17014" average="13643.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1434?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1438?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_50ms_5?type=Runnable" name="Runnable_50ms_5" activations="periodic_50ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1067?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2422?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2700?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5232?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5994?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6698?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8107?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8183?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="2437" upperBound="5273" average="4010.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1379?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4391?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2600?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1856?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_334?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9259?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_27?type=Runnable" name="Runnable_100ms_27" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2041?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_133?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_69?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4943?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3025?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4022?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_217?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5807?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6694?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7405?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7893?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7993?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="273" upperBound="1111" average="595.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4434?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_217?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9505?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_50ms_6?type=Runnable" name="Runnable_50ms_6" activations="periodic_50ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1292?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2297?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4218?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4387?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8536?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="3707" upperBound="7608" average="5763.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_538?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1067?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1630?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9398?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_32?type=Runnable" name="Runnable_10ms_32" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2136?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_777?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1553?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3885?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_142?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3005?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6857?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7048?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8008?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8119?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="2404" upperBound="13447" average="12555.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_381?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1330?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2136?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1368?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3996?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1553?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4758?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3602?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9217?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9236?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_28?type=Runnable" name="Runnable_100ms_28" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2851?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_531?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2177?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2100?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2967?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2900?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5640?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8948?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="9417" upperBound="39627" average="20920.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2421?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1742?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2967?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4845?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_495?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_33?type=Runnable" name="Runnable_10ms_33" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1818?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_66?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_270?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4345?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5504?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="550" upperBound="686" average="593.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1784?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2308?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1573?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1818?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_278?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9877?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_29?type=Runnable" name="Runnable_100ms_29" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3839?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4888?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4814?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1522?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2589?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7183?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="242" upperBound="531" average="387.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4888?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2296?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3850?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_14?type=Runnable" name="Runnable_6660us_14" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4320?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2381?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1161?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_548?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2379?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7406?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8649?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="2783" upperBound="11204" average="8176.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1911?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2381?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1161?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_548?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1951?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2379?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3382?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4870?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4178?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9907?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_1ms_3?type=Runnable" name="Runnable_1ms_3" activations="periodic_1ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_5774?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="987" upperBound="8505" average="4988.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9316?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_30?type=Runnable" name="Runnable_20ms_30" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1555?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2268?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1508?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2583?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6382?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7256?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8411?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8600?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="42" upperBound="373" average="208.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2268?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2583?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4148?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9364?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_34?type=Runnable" name="Runnable_10ms_34" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3840?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4475?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8416?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8552?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8585?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1162" upperBound="2716" average="1907.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1030?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3840?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2248?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3745?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1935?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2328?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4695?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9240?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9875?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9939?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_sporadic_4900us_5050us_0?type=Runnable" name="Runnable_sporadic_4900us_5050us_0" activations="sporadic_4900us_5050us?type=SporadicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_5820?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8979?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="6394" upperBound="14166" average="9710.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4328?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9387?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9776?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_31?type=Runnable" name="Runnable_20ms_31" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2088?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1763?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3756?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2602?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4870?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3804?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2087?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5369?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6228?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7408?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7638?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8708?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="558" upperBound="827" average="677.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3702?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_30?type=Runnable" name="Runnable_100ms_30" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4425?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4554?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_988?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2959?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2680?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2316?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3186?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6980?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7647?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8834?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="369" upperBound="463" average="375.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1786?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_15?type=Runnable" name="Runnable_6660us_15" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4625?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4769?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_942?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_729?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7268?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="63" upperBound="274" average="182.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_467?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3155?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_373?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_564?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2843?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4658?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9527?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_sporadic_6000us_6100us_0?type=Runnable" name="Runnable_sporadic_6000us_6100us_0" activations="sporadic_6000us_6100us?type=SporadicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_5095?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6695?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8931?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="16581" upperBound="36066" average="26935.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3421?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3920?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9451?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_16?type=Runnable" name="Runnable_6660us_16" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4365?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_494?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4588?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1375?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3647?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5757?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6443?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6681?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="3466" upperBound="9416" average="5111.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1414?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4588?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3697?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9498?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_50ms_7?type=Runnable" name="Runnable_50ms_7" activations="periodic_50ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4008?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_628?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6096?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6985?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8093?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8348?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="4150" upperBound="9357" average="7413.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2588?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9495?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_32?type=Runnable" name="Runnable_20ms_32" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2863?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3554?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4392?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_362?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="233" upperBound="830" average="729.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_461?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4392?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4026?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_31?type=Runnable" name="Runnable_100ms_31" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1084?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2186?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3889?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_587?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4132?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5624?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5915?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6512?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7582?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8000?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8290?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="89" upperBound="567" average="453.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1866?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4007?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4991?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1554?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1122?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_794?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_32?type=Runnable" name="Runnable_100ms_32" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2613?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5685?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6239?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6910?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="6948" upperBound="15352" average="8867.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2482?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_113?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_172?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4935?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3219?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1206?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9389?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9902?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_17?type=Runnable" name="Runnable_6660us_17" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_994?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3451?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1392?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4382?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2484?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4369?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3564?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1403?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3944?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1446?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4507?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7919?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8050?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8848?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="413" upperBound="1202" average="836.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3072?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1253?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3891?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4674?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9454?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_33?type=Runnable" name="Runnable_20ms_33" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1295?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1081?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1736?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4693?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6432?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7377?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7575?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="106" upperBound="256" average="179.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4157?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_462?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3133?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2593?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2401?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1081?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9296?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9881?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_1ms_4?type=Runnable" name="Runnable_1ms_4" activations="periodic_1ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4926?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3080?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5182?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6225?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6955?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8841?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="2925" upperBound="13480" average="9856.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2333?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9317?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_33?type=Runnable" name="Runnable_100ms_33" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2058?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2637?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1014?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4995?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1538?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5761?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="997" upperBound="2710" average="2061.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4979?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3249?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2584?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_1000ms_8?type=Runnable" name="Runnable_1000ms_8" activations="periodic_1000ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1215?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4672?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4867?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="222" upperBound="360" average="314.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_904?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1502?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1086?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1431?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3412?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4440?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_35?type=Runnable" name="Runnable_10ms_35" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3525?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_704?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4513?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5166?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5632?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5782?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7123?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8415?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8645?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="144" upperBound="469" average="157.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3525?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_704?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_770?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3669?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9910?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_36?type=Runnable" name="Runnable_10ms_36" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1622?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3194?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2629?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1302?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2060?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4649?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3675?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8884?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="117" upperBound="1879" average="630.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2616?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1125?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2629?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4743?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_196?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9984?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_34?type=Runnable" name="Runnable_20ms_34" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2942?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1309?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2361?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1633?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5509?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6978?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7511?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7542?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8238?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8676?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="3529" upperBound="9224" average="6579.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1309?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9809?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_37?type=Runnable" name="Runnable_10ms_37" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1093?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3417?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2131?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5503?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7517?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7595?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1736" upperBound="9399" average="4947.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3623?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1093?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1872?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4378?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1487?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_966?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9679?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_50ms_8?type=Runnable" name="Runnable_50ms_8" activations="periodic_50ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2696?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2092?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4638?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2566?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_197?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6616?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6850?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="15181" upperBound="28230" average="18189.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2092?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4638?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2566?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9572?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_1ms_5?type=Runnable" name="Runnable_1ms_5" activations="periodic_1ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3591?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2521?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5218?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6820?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="318" upperBound="1368" average="1072.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9215?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_35?type=Runnable" name="Runnable_20ms_35" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1913?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2691?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4027?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7437?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7702?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="7607" upperBound="21005" average="19468.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_977?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_621?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_174?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1395?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2691?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1900?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4607?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_34?type=Runnable" name="Runnable_100ms_34" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4390?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2880?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3658?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4305?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5057?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6754?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="3768" upperBound="12457" average="6714.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4296?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1538?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4305?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2660?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2527?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3131?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2081?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9762?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_18?type=Runnable" name="Runnable_6660us_18" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_74?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3461?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3974?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_320?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3343?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2611?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1796?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6417?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="872" upperBound="1115" average="1005.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2611?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_783?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1446?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_35?type=Runnable" name="Runnable_100ms_35" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4784?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4662?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4422?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4094?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4652?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_523?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5444?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7831?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8285?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="595" upperBound="1279" average="670.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3457?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_523?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2320?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4251?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9610?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_19?type=Runnable" name="Runnable_6660us_19" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2738?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1079?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4674?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1589?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5251?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5520?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7594?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8075?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8496?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8659?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8900?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="313" upperBound="1486" average="1035.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2295?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_955?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3985?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1160?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1464?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_5?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9413?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_38?type=Runnable" name="Runnable_10ms_38" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2682?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2857?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1978?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1610?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6406?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6739?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7144?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7415?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7551?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7832?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="4145" upperBound="14868" average="10988.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1831?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1231?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1457?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2642?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4417?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3924?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_1ms_6?type=Runnable" name="Runnable_1ms_6" activations="periodic_1ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4176?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1237?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5798?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7250?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8195?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1288" upperBound="5132" average="3918.0" pRemainPromille="5.0E-4" />
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_5ms_3?type=Runnable" name="Runnable_5ms_3" activations="periodic_5ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2145?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4874?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5244?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8016?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8356?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8716?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="471" upperBound="2806" average="2126.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1394?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9728?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_36?type=Runnable" name="Runnable_20ms_36" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3511?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1939?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2537?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5171?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5494?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6253?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="12969" upperBound="21248" average="15324.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4335?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4770?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_37?type=Runnable" name="Runnable_20ms_37" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1962?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4364?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4778?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6499?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6809?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7380?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7866?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="185" upperBound="329" average="281.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1939?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_39?type=Runnable" name="Runnable_10ms_39" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_261?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_143?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2248?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4033?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3711?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3880?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5066?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5351?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6153?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7651?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8181?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8892?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="10013" upperBound="13861" average="10532.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2025?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_76?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3284?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2227?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4158?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_38?type=Runnable" name="Runnable_20ms_38" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2016?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5316?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="260" upperBound="413" average="319.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_141?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3997?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_627?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_sporadic_700us_800us_1?type=Runnable" name="Runnable_sporadic_700us_800us_1" activations="sporadic_700us_800us?type=SporadicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_5071?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6568?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1024" upperBound="1556" average="1247.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9926?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_40?type=Runnable" name="Runnable_10ms_40" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4239?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2085?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4756?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3218?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6205?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7723?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8938?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="671" upperBound="1270" average="810.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_476?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3969?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_51?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_39?type=Runnable" name="Runnable_20ms_39" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4827?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1440?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1138?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3444?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5414?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7054?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7734?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="36" upperBound="210" average="141.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1138?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_40?type=Runnable" name="Runnable_20ms_40" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2063?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6902?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7354?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7448?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="242" upperBound="463" average="344.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4673?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2226?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2063?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_896?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_599?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_20?type=Runnable" name="Runnable_6660us_20" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4776?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2059?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1888?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3325?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3915?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4632?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2921?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2645?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_72?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8379?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="453" upperBound="1600" average="985.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3273?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_971?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3164?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3325?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4632?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2739?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9866?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9895?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_36?type=Runnable" name="Runnable_100ms_36" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3507?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3185?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4885?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_65?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7061?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8072?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8425?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="2596" upperBound="4253" average="2866.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2198?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1298?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4885?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2812?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1370?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3446?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9372?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9499?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_41?type=Runnable" name="Runnable_10ms_41" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2378?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2533?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1878?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_669?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1244?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8711?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8730?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="5267" upperBound="10775" average="7441.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1884?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3519?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3301?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2378?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2345?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1244?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_41?type=Runnable" name="Runnable_20ms_41" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4653?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1714?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1101?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5314?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6215?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7506?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="74" upperBound="542" average="412.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4559?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_600?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_362?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9151?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_42?type=Runnable" name="Runnable_20ms_42" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_206?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4957?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2067?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4133?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_473?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3888?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5237?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8040?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8482?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="13964" upperBound="32026" average="17928.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_355?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_473?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3888?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_37?type=Runnable" name="Runnable_100ms_37" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2853?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4397?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5158?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6537?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6592?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6817?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8154?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="2711" upperBound="23820" average="14656.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4397?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_587?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3932?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3415?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9487?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_43?type=Runnable" name="Runnable_20ms_43" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2086?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1334?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1897?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4910?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1807?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_903?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2885?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_465?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5408?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5773?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6065?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7077?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="502" upperBound="705" average="529.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_192?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4910?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1807?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_903?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_42?type=Runnable" name="Runnable_10ms_42" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1145?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4869?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3166?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6290?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7064?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7167?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7529?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7820?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8849?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1252" upperBound="3151" average="2266.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4358?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4701?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_769?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3791?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_153?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4347?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4065?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4966?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_43?type=Runnable" name="Runnable_10ms_43" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4574?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4254?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4544?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_738?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4921?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2042?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4761?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5779?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6783?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8878?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="179" upperBound="1004" average="613.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4653?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1962?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2863?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9345?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9535?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_21?type=Runnable" name="Runnable_6660us_21" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1320?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_15?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2252?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5097?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6605?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6729?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8251?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8820?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="2468" upperBound="4510" average="2898.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_15?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4206?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2252?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2634?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_318?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_sporadic_1100us_1200us_0?type=Runnable" name="Runnable_sporadic_1100us_1200us_0" activations="sporadic_1100us_1200us?type=SporadicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_5255?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5473?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7706?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8354?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1128" upperBound="2136" average="1439.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_414?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2221?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_105?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_266?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1709?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9739?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_44?type=Runnable" name="Runnable_10ms_44" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2290?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4101?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4393?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2376?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1213?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_438?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4166?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_680?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4700?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3598?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1122?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7515?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8273?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="6723" upperBound="22579" average="12311.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4481?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4393?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_438?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4700?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1310?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_44?type=Runnable" name="Runnable_20ms_44" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_643?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3657?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6152?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6187?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6411?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7447?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7777?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8862?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1737" upperBound="8630" average="6367.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1696?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3657?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9855?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_1000ms_9?type=Runnable" name="Runnable_1000ms_9" activations="periodic_1000ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_324?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5423?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8293?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="316" upperBound="605" average="403.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2414?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1051?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3353?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1462?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9218?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9986?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_45?type=Runnable" name="Runnable_20ms_45" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_826?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6637?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="257" upperBound="444" average="355.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4513?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_45?type=Runnable" name="Runnable_10ms_45" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_786?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4736?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1353?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3410?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5265?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5590?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="70" upperBound="339" average="225.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_670?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1739?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_847?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4648?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2744?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3271?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1222?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_46?type=Runnable" name="Runnable_10ms_46" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3077?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3678?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1578?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4618?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2407?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_681?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1115?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5583?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5873?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6581?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8087?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8715?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8721?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="107" upperBound="982" average="663.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3678?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1878?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_246?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9099?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9539?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_47?type=Runnable" name="Runnable_10ms_47" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_645?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2500?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4925?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_935?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1966?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3329?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1291?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2628?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_161?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1018?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7286?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7598?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8642?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8795?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8928?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="10756" upperBound="20824" average="11263.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2024?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1291?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2628?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4140?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1950?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9018?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_46?type=Runnable" name="Runnable_20ms_46" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4108?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1283?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_547?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1131?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_846?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6628?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6949?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8143?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="11457" upperBound="16245" average="12955.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_547?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1131?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9180?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_sporadic_1500us_1700us_1?type=Runnable" name="Runnable_sporadic_1500us_1700us_1" activations="sporadic_1500us_1700us?type=SporadicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_6300?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6623?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8816?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="3547" upperBound="12317" average="8839.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4424?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_22?type=Runnable" name="Runnable_6660us_22" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_219?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4285?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5785?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6412?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7657?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8172?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="468" upperBound="966" average="778.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2319?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_38?type=Runnable" name="Runnable_100ms_38" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2180?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4466?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4813?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5035?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5310?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5863?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6748?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="114" upperBound="2262" average="762.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2001?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4288?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1522?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3815?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_23?type=Runnable" name="Runnable_6660us_23" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2709?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4748?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1825?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3004?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3869?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3862?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_409?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_502?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5654?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7950?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="191" upperBound="1238" average="863.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9080?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9088?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9994?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_24?type=Runnable" name="Runnable_6660us_24" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1305?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2447?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3989?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4460?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2061?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4383?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6931?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7023?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7783?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="238" upperBound="768" average="587.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3066?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4144?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4086?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3647?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9293?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9768?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_48?type=Runnable" name="Runnable_10ms_48" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_251?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4017?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4290?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_352?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2219?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2355?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_842?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_51?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3384?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4381?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5031?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5065?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5288?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5799?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7493?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8017?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8046?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1358" upperBound="4016" average="3028.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3071?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_352?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2219?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1966?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2002?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3538?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_47?type=Runnable" name="Runnable_20ms_47" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1352?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_959?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5350?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5834?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1110" upperBound="5176" average="3502.0" pRemainPromille="5.0E-4" />
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_48?type=Runnable" name="Runnable_20ms_48" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4798?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2449?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5401?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5588?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7041?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="4731" upperBound="9640" average="5810.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3366?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1819?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4460?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2742?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_867?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2452?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9207?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9375?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_49?type=Runnable" name="Runnable_20ms_49" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3876?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4155?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2310?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5091?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7889?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8657?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="386" upperBound="795" average="717.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4155?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_938?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_743?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4958?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9225?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9765?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_49?type=Runnable" name="Runnable_10ms_49" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2255?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1096?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3264?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1130?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5131?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5400?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5411?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8930?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="105" upperBound="1239" average="816.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2443?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2264?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1096?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3264?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_66?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2286?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9378?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_50?type=Runnable" name="Runnable_20ms_50" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1991?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3402?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5465?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6793?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6906?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="479" upperBound="1093" average="714.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3067?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2537?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9958?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_39?type=Runnable" name="Runnable_100ms_39" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2498?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4938?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_300?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6381?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7650?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7849?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8213?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8720?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="421" upperBound="958" average="612.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2193?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2969?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3524?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9482?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9585?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_40?type=Runnable" name="Runnable_100ms_40" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1379?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4955?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_695?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5435?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7288?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="12355" upperBound="24943" average="16920.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3304?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4955?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4761?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2272?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9513?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_51?type=Runnable" name="Runnable_20ms_51" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2424?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2714?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5236?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7592?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8145?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="3316" upperBound="4817" average="3575.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2714?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_629?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9786?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_50ms_9?type=Runnable" name="Runnable_50ms_9" activations="periodic_50ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3441?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4970?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_764?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2165?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5021?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6002?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1449" upperBound="1822" average="1566.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4545?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9244?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9366?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9850?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9882?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_50?type=Runnable" name="Runnable_10ms_50" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_93?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3374?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2616?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3721?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3877?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3767?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_249?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5706?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8299?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1559" upperBound="3991" average="3466.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_986?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_536?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4193?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_93?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3374?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3890?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1213?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3721?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4400?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1541?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9544?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_51?type=Runnable" name="Runnable_10ms_51" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1390?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3890?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3226?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4184?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4468?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6515?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6520?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6884?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="3611" upperBound="32992" average="17615.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_267?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_52?type=Runnable" name="Runnable_20ms_52" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3271?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3460?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_957?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2222?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5122?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6079?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6530?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8761?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8956?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="341" upperBound="796" average="593.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4069?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_939?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3286?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9262?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_52?type=Runnable" name="Runnable_10ms_52" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_714?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1157?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3573?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2353?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5117?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6864?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7546?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7694?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="75" upperBound="396" average="370.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3308?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1845?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3486?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3327?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_53?type=Runnable" name="Runnable_10ms_53" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4715?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_735?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3476?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4847?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6052?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7375?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8262?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8591?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="2086" upperBound="6109" average="4406.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2090?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4541?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9134?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_2ms_4?type=Runnable" name="Runnable_2ms_4" activations="periodic_2ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_5010?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6167?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6529?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="792" upperBound="4136" average="2670.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9847?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_53?type=Runnable" name="Runnable_20ms_53" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1384?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2794?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2606?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5930?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7087?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7444?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7532?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="13025" upperBound="23719" average="15531.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2765?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2924?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4804?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_41?type=Runnable" name="Runnable_100ms_41" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4563?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_440?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5335?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5733?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7846?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="89" upperBound="1208" average="754.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3019?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1934?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_518?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9092?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9930?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_42?type=Runnable" name="Runnable_100ms_42" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3580?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_567?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_512?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8191?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="631" upperBound="909" average="655.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3171?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_512?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3747?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2217?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4894?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4585?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4399?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_307?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_5ms_4?type=Runnable" name="Runnable_5ms_4" activations="periodic_5ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_5456?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5931?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6333?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6390?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7098?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="2488" upperBound="3965" average="2698.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2070?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9757?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_sporadic_1100us_1200us_1?type=Runnable" name="Runnable_sporadic_1100us_1200us_1" activations="sporadic_1100us_1200us?type=SporadicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_7190?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8569?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8899?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1234" upperBound="2312" average="1605.0" pRemainPromille="5.0E-4" />
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_54?type=Runnable" name="Runnable_20ms_54" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_838?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2663?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="106" upperBound="335" average="176.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_859?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_25?type=Runnable" name="Runnable_6660us_25" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2233?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3101?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2542?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4982?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1638?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2713?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_190?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4244?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4203?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5136?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5845?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5868?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5973?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6769?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8779?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="3549" upperBound="13970" average="11452.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3469?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3343?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2713?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3601?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9883?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_26?type=Runnable" name="Runnable_6660us_26" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3164?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1563?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1236?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_418?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6218?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8945?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="3318" upperBound="10520" average="6451.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4124?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_990?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2207?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4123?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_897?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4539?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9079?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9176?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9355?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9769?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_55?type=Runnable" name="Runnable_20ms_55" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2254?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4702?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1267?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1591?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6470?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8410?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="3005" upperBound="10559" average="5605.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1215?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_54?type=Runnable" name="Runnable_10ms_54" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4832?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2555?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_58?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1942?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6469?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6495?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7535?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="3542" upperBound="11211" average="6144.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_535?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4832?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4728?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2425?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9192?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9787?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_56?type=Runnable" name="Runnable_20ms_56" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4890?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1560?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1979?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1721?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8679?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1519" upperBound="8711" average="6642.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3096?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2061?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3107?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_612?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1979?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3694?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_55?type=Runnable" name="Runnable_10ms_55" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_524?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3039?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2113?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6497?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8255?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="2385" upperBound="4562" average="3577.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_530?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_43?type=Runnable" name="Runnable_100ms_43" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3729?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3758?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5839?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6064?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6337?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7622?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7923?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8250?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="233" upperBound="1170" average="748.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4422?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4921?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_56?type=Runnable" name="Runnable_10ms_56" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_439?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1980?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_754?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1575?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2864?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1498?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2295?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3858?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5072?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6683?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7857?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8497?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="4264" upperBound="10129" average="6913.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4361?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1863?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_926?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2828?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2864?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1654?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_901?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2393?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_276?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9033?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9838?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_sporadic_900us_1000us_1?type=Runnable" name="Runnable_sporadic_900us_1000us_1" activations="sporadic_900us_1000us?type=SporadicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_5641?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5770?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8599?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8630?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="5461" upperBound="10248" average="6985.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1022?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2385?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_44?type=Runnable" name="Runnable_100ms_44" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3090?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3812?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5277?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5999?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6013?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6265?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7807?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8511?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1013" upperBound="12862" average="10756.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4496?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3812?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9867?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_57?type=Runnable" name="Runnable_10ms_57" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_978?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1918?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_91?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1952?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2236?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2765?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6202?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7624?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8065?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="115" upperBound="406" average="366.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_661?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1176?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4326?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4343?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_91?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3139?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1952?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1356?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3705?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_58?type=Runnable" name="Runnable_10ms_58" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4624?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3211?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_928?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_855?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2032?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1270?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1730?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5544?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5911?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6389?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6834?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7351?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7615?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="360" upperBound="836" average="600.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4789?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3211?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_928?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_862?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_59?type=Runnable" name="Runnable_10ms_59" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2724?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2128?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1983?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5087?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5322?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5453?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="164" upperBound="275" average="173.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2724?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4858?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1090?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_200ms_0?type=Runnable" name="Runnable_200ms_0" activations="periodic_200ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3677?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2990?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2689?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3103?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2514?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2518?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1867?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4005?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4200?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_467?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1126?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1234?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3200?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_134?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5272?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5412?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1761" upperBound="2731" average="1937.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4198?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2643?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3128?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3789?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2299?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_611?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3247?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2988?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_159?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_186?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9138?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_57?type=Runnable" name="Runnable_20ms_57" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2294?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5679?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7290?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7556?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7700?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8486?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="4603" upperBound="20855" average="12684.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1589?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9459?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_58?type=Runnable" name="Runnable_20ms_58" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4678?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1704?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1609?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1280?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5382?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7621?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7795?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="6288" upperBound="36345" average="22151.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_258?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9160?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_60?type=Runnable" name="Runnable_10ms_60" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3875?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1493?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2481?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_223?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3399?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1634?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3450?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6251?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6880?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7271?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="3654" upperBound="6133" average="4460.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3505?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3014?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4033?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1493?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2481?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3610?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_27?type=Runnable" name="Runnable_6660us_27" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3768?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2454?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1764?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2056?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6478?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6972?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7462?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7682?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8039?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8200?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="738" upperBound="1460" average="900.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1756?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9580?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_45?type=Runnable" name="Runnable_100ms_45" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_801?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_487?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3597?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5498?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5652?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="95" upperBound="675" average="532.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_487?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2250?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4908?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2740?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_241?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_61?type=Runnable" name="Runnable_10ms_61" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4431?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1413?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_80?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1416?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6398?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6676?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6822?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1181" upperBound="10807" average="8060.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4176?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_880?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_429?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1369?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_680?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4311?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1890?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_46?type=Runnable" name="Runnable_100ms_46" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1205?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5321?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5620?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5803?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6046?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6082?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6258?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="284" upperBound="740" average="578.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2054?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2158?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1205?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_55?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2246?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9557?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_59?type=Runnable" name="Runnable_20ms_59" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2144?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2166?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3049?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1138?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5554?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5956?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6685?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8100?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="169" upperBound="648" average="467.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9778?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_62?type=Runnable" name="Runnable_10ms_62" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1108?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1558?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1191?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4512?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_138?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2036?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1812?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5445?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7685?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8370?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="4354" upperBound="8589" average="5182.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1108?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3709?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_58?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1191?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1496?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_47?type=Runnable" name="Runnable_100ms_47" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2285?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3899?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2721?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_132?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3656?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7072?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8696?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="241" upperBound="503" average="285.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2363?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_132?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9347?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_60?type=Runnable" name="Runnable_20ms_60" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_696?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6050?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8998?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="337" upperBound="648" average="495.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2825?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2358?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_63?type=Runnable" name="Runnable_10ms_63" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4587?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_167?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4962?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3515?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4790?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7541?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="3494" upperBound="8414" average="6807.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2392?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_567?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2930?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3151?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_245?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3056?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9300?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_61?type=Runnable" name="Runnable_20ms_61" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_5920?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6718?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7463?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="2796" upperBound="17339" average="11964.0" pRemainPromille="5.0E-4" />
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_64?type=Runnable" name="Runnable_10ms_64" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2657?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4486?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3138?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3628?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2084?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4072?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4575?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7482?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="417" upperBound="991" average="715.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_350?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4333?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2657?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4512?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3138?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9540?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9974?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_200ms_1?type=Runnable" name="Runnable_200ms_1" activations="periodic_200ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4198?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4992?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3344?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2927?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1681?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1716?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_560?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2014?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7978?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="312" upperBound="524" average="362.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4483?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3677?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2990?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2204?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2689?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_679?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1016?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2041?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_444?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_127?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4401?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_748?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4435?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3727?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3345?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_65?type=Runnable" name="Runnable_10ms_65" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2849?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3319?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3663?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1864?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2132?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5875?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1261" upperBound="2994" average="2625.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1681?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3931?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_349?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4608?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2793?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1754?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3319?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4540?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2741?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4255?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3845?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9800?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_66?type=Runnable" name="Runnable_10ms_66" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4150?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_703?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2908?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5941?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6982?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7458?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8156?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="727" upperBound="780" average="738.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2321?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3311?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1476?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_67?type=Runnable" name="Runnable_10ms_67" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4280?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4941?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_24?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_398?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2520?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5205?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5522?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7000?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1947" upperBound="21191" average="12998.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1980?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4280?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1792?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_24?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2106?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1203?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9561?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_28?type=Runnable" name="Runnable_6660us_28" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2393?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1935?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_59?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_273?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4336?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4282?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_572?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1587?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5630?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5810?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5901?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="516" upperBound="1040" average="679.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4261?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_273?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4808?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3463?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9116?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_68?type=Runnable" name="Runnable_10ms_68" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_992?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3243?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4860?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4214?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4423?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1411?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5349?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6541?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8531?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="2590" upperBound="5179" average="3147.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2809?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4423?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4912?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_48?type=Runnable" name="Runnable_100ms_48" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3171?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4865?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5189?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6927?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8045?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8113?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8286?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="654" upperBound="1231" average="684.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_854?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2732?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2359?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9274?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9970?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_69?type=Runnable" name="Runnable_10ms_69" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2095?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_449?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_853?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4485?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2671?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1432?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6116?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7036?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7119?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="4617" upperBound="16083" average="12295.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2095?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1947?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1760?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4680?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1832?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4574?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4431?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9164?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_70?type=Runnable" name="Runnable_10ms_70" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3582?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1367?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2335?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3408?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1258?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4273?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_369?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6774?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7095?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8070?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8670?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="244" upperBound="2947" average="740.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3094?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_688?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1405?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2802?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1367?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4382?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_71?type=Runnable" name="Runnable_10ms_71" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4904?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1308?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_564?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1819?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_876?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3559?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4456?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5336?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6191?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="2463" upperBound="16907" average="9188.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4904?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4012?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3169?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1972?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4351?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3370?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4776?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9139?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9680?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_72?type=Runnable" name="Runnable_10ms_72" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3144?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1595?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5802?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8209?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="406" upperBound="979" average="562.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2079?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_337?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9049?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_62?type=Runnable" name="Runnable_20ms_62" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3643?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2343?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2694?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5464?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6743?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="4828" upperBound="11917" average="7033.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1276?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3227?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_50ms_10?type=Runnable" name="Runnable_50ms_10" activations="periodic_50ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2064?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3829?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4583?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6712?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8732?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8996?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="6782" upperBound="18225" average="12996.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_764?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_sporadic_1700us_1800us_1?type=Runnable" name="Runnable_sporadic_1700us_1800us_1" activations="sporadic_1700us_1800us?type=SporadicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_5848?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6210?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6606?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7396?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8909?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="3756" upperBound="7522" average="5714.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_118?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_49?type=Runnable" name="Runnable_100ms_49" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_720?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3277?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2278?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2001?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7213?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="6279" upperBound="11953" average="6398.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1256?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2462?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_142?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1637?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2087?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9720?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9807?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_29?type=Runnable" name="Runnable_6660us_29" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1279?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_965?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1869?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5302?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6130?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8211?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8509?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="410" upperBound="1514" average="773.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_965?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_450?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2275?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_503?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1677?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9298?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9514?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9872?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_30?type=Runnable" name="Runnable_6660us_30" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2824?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1249?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4956?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4717?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_525?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3197?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6209?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7311?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8130?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8326?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="8114" upperBound="12180" average="9219.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2365?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3903?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3585?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4032?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1295?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9521?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9550?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_50?type=Runnable" name="Runnable_100ms_50" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_198?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4990?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_568?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4496?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2797?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1782?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1490?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6671?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="7515" upperBound="19375" average="12844.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3658?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4023?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3947?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4686?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_73?type=Runnable" name="Runnable_10ms_73" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1842?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3734?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_21?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3258?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2535?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3674?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1348?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3338?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5187?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5437?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5842?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6372?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7781?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7823?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="119" upperBound="883" average="595.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1691?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1895?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_637?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3734?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2532?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1239?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3974?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1876?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_207?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_63?type=Runnable" name="Runnable_20ms_63" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1162?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_233?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_461?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6023?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7298?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7349?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7350?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8842?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="87" upperBound="189" average="111.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1547?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_233?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9581?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_51?type=Runnable" name="Runnable_100ms_51" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2365?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3253?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1785?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_384?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5320?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="69" upperBound="769" average="462.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3253?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_755?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1964?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_844?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1774?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_74?type=Runnable" name="Runnable_10ms_74" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4626?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4510?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3909?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4661?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3396?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_863?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3913?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6183?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7127?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7883?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="146" upperBound="562" average="393.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2959?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_703?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4819?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4661?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3387?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2857?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_863?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_873?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1702?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9188?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9760?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_31?type=Runnable" name="Runnable_6660us_31" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1805?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2768?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1248?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3933?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5289?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5525?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="2322" upperBound="10752" average="8298.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1805?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9816?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_64?type=Runnable" name="Runnable_20ms_64" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_75?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_753?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5248?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8358?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8731?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="603" upperBound="1512" average="1115.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_753?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9010?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9237?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_52?type=Runnable" name="Runnable_100ms_52" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_650?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2489?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_292?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1837?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1785?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5063?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7080?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7852?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8036?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="377" upperBound="509" average="381.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1785?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2892?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9175?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_65?type=Runnable" name="Runnable_20ms_65" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1769?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4812?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6780?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="7633" upperBound="18430" average="12022.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4924?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2205?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4712?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1719?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9394?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_75?type=Runnable" name="Runnable_10ms_75" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3852?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_610?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3856?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1194?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1473?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_522?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3421?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5163?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6044?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6261?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7172?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7873?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8808?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1673" upperBound="3991" average="2352.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_610?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_455?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_252?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3835?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_613?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4907?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_66?type=Runnable" name="Runnable_20ms_66" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_5709?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="14914" upperBound="25983" average="17785.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9000?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9997?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_76?type=Runnable" name="Runnable_10ms_76" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_822?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3149?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_574?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2020?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5153?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8165?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8755?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="4858" upperBound="20734" average="12490.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2402?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4736?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2555?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1300?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_574?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3551?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9319?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_1000ms_10?type=Runnable" name="Runnable_1000ms_10" activations="periodic_1000ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3845?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2886?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1342?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_241?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3314?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5593?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5944?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8055?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="259" upperBound="374" average="340.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1534?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3635?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3314?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_869?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9624?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_67?type=Runnable" name="Runnable_20ms_67" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4514?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2733?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5578?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5613?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8777?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="326" upperBound="579" average="386.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2733?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9239?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9640?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_53?type=Runnable" name="Runnable_100ms_53" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4550?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3634?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5650?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6449?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6868?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7935?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="8478" upperBound="15828" average="10106.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3634?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_77?type=Runnable" name="Runnable_10ms_77" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_395?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3819?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4772?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4608?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1545?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5069?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5988?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6325?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6399?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8737?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="288" upperBound="457" average="320.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3214?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2829?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_395?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3819?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4772?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1652?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2166?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9507?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9547?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_68?type=Runnable" name="Runnable_20ms_68" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3558?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_135?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="240" upperBound="1071" average="729.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_975?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3558?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2424?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_32?type=Runnable" name="Runnable_6660us_32" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1651?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1479?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2486?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4844?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5816?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5939?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7065?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="2161" upperBound="5986" average="3536.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2695?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3950?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3004?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_78?type=Runnable" name="Runnable_10ms_78" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_974?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_497?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5985?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8275?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="5153" upperBound="29069" average="16386.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4923?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_822?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4150?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2525?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3546?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_974?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3853?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2992?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_672?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2782?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9595?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_54?type=Runnable" name="Runnable_100ms_54" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2117?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1282?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4875?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7897?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8085?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="550" upperBound="962" average="574.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_432?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_12?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1248?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3911?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_79?type=Runnable" name="Runnable_10ms_79" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2214?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2647?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1970?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6184?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6563?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7369?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8287?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="9174" upperBound="29200" average="18121.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2548?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2664?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_788?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1748?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3125?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2602?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_1000ms_11?type=Runnable" name="Runnable_1000ms_11" activations="periodic_1000ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1404?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2134?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3213?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5425?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7197?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7244?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7335?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8915?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="381" upperBound="839" average="521.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1490?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_577?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2847?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2684?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_55?type=Runnable" name="Runnable_100ms_55" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4261?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4235?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2313?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5697?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="5266" upperBound="19366" average="13040.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2313?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_165?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3307?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4022?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2097?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9791?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_5ms_5?type=Runnable" name="Runnable_5ms_5" activations="periodic_5ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_6627?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7940?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8870?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="18974" upperBound="33913" average="22811.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3440?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_200ms_2?type=Runnable" name="Runnable_200ms_2" activations="periodic_200ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2088?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3592?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4621?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_27?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4287?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_737?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3967?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3514?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_977?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3817?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5235?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5844?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7020?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8385?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8559?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8606?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="269" upperBound="485" average="301.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2088?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_27?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2927?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1773?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9676?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_56?type=Runnable" name="Runnable_100ms_56" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3750?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3220?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1915?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8090?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8126?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8621?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8709?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="55" upperBound="744" average="542.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3881?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_810?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1480?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_526?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9374?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9813?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_80?type=Runnable" name="Runnable_10ms_80" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4471?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_552?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1300?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2443?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_472?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2563?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_527?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5292?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5655?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8125?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8188?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="345" upperBound="1451" average="760.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3626?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3176?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2783?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1771?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_33?type=Runnable" name="Runnable_6660us_33" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1868?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1095?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4158?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4363?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_636?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3982?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8215?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8660?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="187" upperBound="574" average="466.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4731?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2367?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4363?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9181?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_34?type=Runnable" name="Runnable_6660us_34" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1487?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4645?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2843?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4167?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1160?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_311?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7876?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8939?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1499" upperBound="8422" average="5695.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1923?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3926?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1375?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_11?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_81?type=Runnable" name="Runnable_10ms_81" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2327?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1312?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2597?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5055?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5726?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7409?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7785?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="3847" upperBound="11149" average="8904.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_694?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_931?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_255?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4488?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4841?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_57?type=Runnable" name="Runnable_100ms_57" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4143?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_621?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3466?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4007?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4931?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7878?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8248?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="388" upperBound="606" average="496.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4466?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_384?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1068?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9157?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9972?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_58?type=Runnable" name="Runnable_100ms_58" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_650?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_144?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3776?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_81?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5073?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5112?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5443?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6838?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="336" upperBound="505" average="433.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3863?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1615?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2316?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1171?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3776?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2404?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3005?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_815?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_421?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_69?type=Runnable" name="Runnable_20ms_69" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4897?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1476?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2625?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3936?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6297?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6468?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6687?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="239" upperBound="372" average="332.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_72?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4829?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_1000ms_12?type=Runnable" name="Runnable_1000ms_12" activations="periodic_1000ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1153?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1454?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_202?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4629?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3365?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4534?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4447?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1426?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6301?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6830?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6870?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8365?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="332" upperBound="814" average="449.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1942?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1419?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4867?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1454?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3545?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4629?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9428?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9861?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_59?type=Runnable" name="Runnable_100ms_59" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1381?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5006?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6727?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7558?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8840?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="12153" upperBound="30501" average="19624.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2820?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1814?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1303?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_60?type=Runnable" name="Runnable_100ms_60" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2674?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3537?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2885?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1380?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3029?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5308?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5852?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6758?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7568?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8577?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="2925" upperBound="6259" average="3555.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3537?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1536?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2885?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1380?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3636?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_879?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1869?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2785?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2898?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_157?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_70?type=Runnable" name="Runnable_20ms_70" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1338?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4241?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4487?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5406?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6000?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6463?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7779?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="264" upperBound="874" average="477.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1299?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9908?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_82?type=Runnable" name="Runnable_10ms_82" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3693?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_865?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1005?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4703?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3893?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_321?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2855?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4001?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6071?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6554?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7847?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8568?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="437" upperBound="658" average="478.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2304?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_865?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1103?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2647?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3617?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3893?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_321?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4001?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2057?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3884?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4571?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_2ms_5?type=Runnable" name="Runnable_2ms_5" activations="periodic_2ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2467?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5717?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6234?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7104?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8633?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="535" upperBound="2088" average="1514.0" pRemainPromille="5.0E-4" />
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_50ms_11?type=Runnable" name="Runnable_50ms_11" activations="periodic_50ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3263?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_451?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2472?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1129?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_108?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_920?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3796?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3083?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5603?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8831?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8940?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1682" upperBound="4608" average="3096.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_555?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4898?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_108?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_sporadic_700us_800us_2?type=Runnable" name="Runnable_sporadic_700us_800us_2" activations="sporadic_700us_800us?type=SporadicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_6129?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6507?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7617?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7778?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8485?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="813" upperBound="1529" average="1164.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9179?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9761?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9828?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_61?type=Runnable" name="Runnable_100ms_61" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4915?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7649?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8295?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8785?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="354" upperBound="981" average="646.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1220?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_598?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4072?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2800?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_511?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9023?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9313?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9472?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_35?type=Runnable" name="Runnable_6660us_35" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4436?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1091?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2670?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1414?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_458?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1190?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2394?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7107?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7543?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8152?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8855?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1009" upperBound="3340" average="1775.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_138?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4544?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1503?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_5ms_6?type=Runnable" name="Runnable_5ms_6" activations="periodic_5ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_5838?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6693?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6728?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6866?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7986?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="644" upperBound="2347" average="1858.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2761?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_62?type=Runnable" name="Runnable_100ms_62" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4009?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3505?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_812?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1317?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5132?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5290?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6438?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6832?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7326?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7510?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7983?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8289?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="2599" upperBound="12727" average="7935.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1317?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1915?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2113?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9999?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_83?type=Runnable" name="Runnable_10ms_83" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2747?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1822?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3684?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2511?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2106?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2658?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6182?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6362?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6871?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8196?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="110" upperBound="511" average="314.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2747?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4186?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1822?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_760?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3943?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2428?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1827?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2832?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2371?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9446?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_84?type=Runnable" name="Runnable_10ms_84" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3730?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4789?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3937?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3668?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3483?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3385?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3935?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7241?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="615" upperBound="5535" average="3064.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4055?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3730?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4217?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3483?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4860?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4656?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4594?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_71?type=Runnable" name="Runnable_20ms_71" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3245?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6089?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6365?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8005?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8567?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="595" upperBound="1185" average="679.0" pRemainPromille="5.0E-4" />
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_85?type=Runnable" name="Runnable_10ms_85" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_195?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4692?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2200?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2612?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2280?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1075?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5864?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6711?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8911?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="2646" upperBound="4947" average="3420.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4095?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1616?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2290?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_490?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_195?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4692?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2612?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4960?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9191?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_200ms_3?type=Runnable" name="Runnable_200ms_3" activations="periodic_200ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4031?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1077?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2614?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2776?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1896?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4854?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_268?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4897?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3504?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3002?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2659?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3273?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1985?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_134?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2293?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_293?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6371?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8867?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1688" upperBound="2934" average="2461.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1077?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2614?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_382?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_566?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4287?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2776?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1896?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2423?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1400?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_970?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3717?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2873?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_63?type=Runnable" name="Runnable_100ms_63" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4055?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_37?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6308?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6455?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7492?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7549?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7815?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8012?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8582?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="125" upperBound="514" average="429.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3762?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_37?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4156?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9792?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_86?type=Runnable" name="Runnable_10ms_86" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1155?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4727?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2711?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_571?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8029?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8061?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8898?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="131" upperBound="431" average="296.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3401?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4727?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2711?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_185?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_87?type=Runnable" name="Runnable_10ms_87" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3126?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1594?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5297?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6445?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7432?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8626?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8854?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="354" upperBound="453" average="369.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1889?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1345?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3159?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4467?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_64?type=Runnable" name="Runnable_100ms_64" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_45?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2974?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6678?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7711?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8024?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8053?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8059?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="501" upperBound="882" average="583.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3062?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_45?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4291?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1083?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4116?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2544?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_36?type=Runnable" name="Runnable_6660us_36" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1186?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3800?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1239?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1827?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2306?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1873?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1917?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8539?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8837?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="494" upperBound="1794" average="932.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2020?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1873?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3556?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_65?type=Runnable" name="Runnable_100ms_65" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_835?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5129?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7034?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7056?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7639?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8545?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8853?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="644" upperBound="1035" average="733.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3153?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_72?type=Runnable" name="Runnable_20ms_72" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3927?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5991?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7108?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="159" upperBound="443" average="220.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1040?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4812?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_1ms_7?type=Runnable" name="Runnable_1ms_7" activations="periodic_1ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3615?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4639?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7182?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8225?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="2968" upperBound="4335" average="3786.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4838?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1608?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1002?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9534?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_2ms_6?type=Runnable" name="Runnable_2ms_6" activations="periodic_2ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_998?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2482?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5505?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5746?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6697?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7304?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8292?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1538" upperBound="5598" average="4208.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9046?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_88?type=Runnable" name="Runnable_10ms_88" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3387?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4665?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5037?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5493?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5682?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7217?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1451" upperBound="2992" average="2413.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_509?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1682?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2216?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1599?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_89?type=Runnable" name="Runnable_10ms_89" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_53?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4079?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2364?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4445?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2574?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2115?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8102?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8866?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="7509" upperBound="20709" average="16703.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2587?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2364?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1498?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2141?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4021?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9951?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_73?type=Runnable" name="Runnable_20ms_73" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2988?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2125?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2263?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1717?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_305?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1235?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3022?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5402?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7516?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="253" upperBound="942" average="614.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1451?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2928?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1508?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_745?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2263?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_305?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1235?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_74?type=Runnable" name="Runnable_20ms_74" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_503?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_389?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5683?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5711?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5792?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7696?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="8851" upperBound="24183" average="16992.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4189?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1261?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9395?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9702?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_2ms_7?type=Runnable" name="Runnable_2ms_7" activations="periodic_2ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_6314?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6768?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7671?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8588?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="3395" upperBound="6381" average="4724.0" pRemainPromille="5.0E-4" />
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_75?type=Runnable" name="Runnable_20ms_75" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1040?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2429?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5212?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5358?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5384?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6467?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6912?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8192?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8228?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8320?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="687" upperBound="6297" average="5474.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4817?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_209?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4705?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2429?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9324?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_90?type=Runnable" name="Runnable_10ms_90" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2805?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1746?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1257?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4891?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_170?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6444?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8692?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="3026" upperBound="5711" average="5135.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3123?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_133?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2882?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1746?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_29?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4141?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1143?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2862?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4891?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_66?type=Runnable" name="Runnable_100ms_66" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4763?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_656?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3318?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_706?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1447?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1357?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="596" upperBound="799" average="634.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2140?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4100?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4579?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9515?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9956?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_91?type=Runnable" name="Runnable_10ms_91" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2964?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4573?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1271?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1933?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4489?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1110?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_203?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5472?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5865?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7440?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8495?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8764?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="100" upperBound="385" average="220.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4554?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4573?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1271?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_sporadic_4900us_5050us_1?type=Runnable" name="Runnable_sporadic_4900us_5050us_1" activations="sporadic_4900us_5050us?type=SporadicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_6328?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7746?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8174?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="8642" upperBound="15265" average="11362.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_919?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2623?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2278?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9248?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9295?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9741?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_1000ms_13?type=Runnable" name="Runnable_1000ms_13" activations="periodic_1000ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4271?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_413?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1351?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3970?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_960?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5009?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6944?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="182" upperBound="432" average="236.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4192?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3499?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3784?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2700?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4147?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_328?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9630?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_76?type=Runnable" name="Runnable_20ms_76" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3922?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3593?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_221?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1917?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2523?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1953?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5636?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6332?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8472?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="300" upperBound="814" average="508.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2831?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1917?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_37?type=Runnable" name="Runnable_6660us_37" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_337?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2580?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2668?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4663?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1119?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_967?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4388?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1737?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4433?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3068?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6166?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="342" upperBound="1343" average="925.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4752?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4663?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2478?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3862?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4272?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_67?type=Runnable" name="Runnable_100ms_67" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4709?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1106?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3416?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6103?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6173?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6926?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7400?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7445?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7842?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="331" upperBound="460" average="376.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2309?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4546?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3315?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9007?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_77?type=Runnable" name="Runnable_20ms_77" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_5526?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7697?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8424?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="183" upperBound="489" average="460.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_401?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_78?type=Runnable" name="Runnable_20ms_78" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_693?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_405?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5883?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6797?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="777" upperBound="2489" average="1714.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3044?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_693?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9431?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9937?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_68?type=Runnable" name="Runnable_100ms_68" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4777?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1889?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4159?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1848?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1821?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5656?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6196?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8168?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8558?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8674?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="799" upperBound="6987" average="5619.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1848?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2076?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1821?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4276?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2577?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_38?type=Runnable" name="Runnable_6660us_38" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2227?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1531?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3857?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4289?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3589?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4426?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3453?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5584?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6280?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="4523" upperBound="10416" average="6887.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1629?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3940?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4367?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4282?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4289?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3944?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_92?type=Runnable" name="Runnable_10ms_92" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_795?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1790?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3042?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7296?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="209" upperBound="1103" average="695.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_734?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1790?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3725?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3642?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2840?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_79?type=Runnable" name="Runnable_20ms_79" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_297?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4146?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_677?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2023?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4234?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4543?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_243?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8381?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8916?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="362" upperBound="613" average="482.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2531?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2023?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1543?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4234?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_80?type=Runnable" name="Runnable_20ms_80" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_6781?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7314?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7804?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="169" upperBound="575" average="499.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2037?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1399?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9917?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_69?type=Runnable" name="Runnable_100ms_69" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4965?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2380?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_607?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2673?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5118?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5830?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5916?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7278?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8044?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8876?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8919?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="73" upperBound="483" average="360.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4090?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1495?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2089?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_39?type=Runnable" name="Runnable_6660us_39" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_267?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3688?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4368?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_808?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1753?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1546" upperBound="10754" average="5955.0" pRemainPromille="5.0E-4" />
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_93?type=Runnable" name="Runnable_10ms_93" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3268?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3561?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_659?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2271?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_971?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3783?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6710?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="340" upperBound="711" average="404.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_659?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4930?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4187?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2459?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4130?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3120?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_40?type=Runnable" name="Runnable_6660us_40" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3145?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1865?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3321?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1645?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4129?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5346?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5594?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5933?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7474?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="3271" upperBound="5776" average="5029.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4129?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1566?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4334?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_94?type=Runnable" name="Runnable_10ms_94" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1626?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3427?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1923?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_404?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4357?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6017?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6359?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="3176" upperBound="8446" average="5470.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3108?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3038?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1626?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4925?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3126?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3430?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3427?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2032?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9276?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9681?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_70?type=Runnable" name="Runnable_100ms_70" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1833?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2756?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1788?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1024?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5649?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6993?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8444?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8815?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="2147" upperBound="37617" average="19573.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4105?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4729?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_71?type=Runnable" name="Runnable_100ms_71" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2368?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_812?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_657?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6873?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7413?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7654?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="3356" upperBound="19476" average="16030.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3333?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2284?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4019?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_81?type=Runnable" name="Runnable_20ms_81" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2083?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7390?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7902?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8843?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="207" upperBound="1002" average="543.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3276?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_371?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1755?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2442?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_82?type=Runnable" name="Runnable_20ms_82" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1355?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1677?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6101?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6969?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7208?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7774?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8241?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="75" upperBound="243" average="187.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3766?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3163?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4805?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4133?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4702?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_264?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9473?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9789?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_72?type=Runnable" name="Runnable_100ms_72" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1132?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3759?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5169?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6400?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7900?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8476?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8629?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8907?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="227" upperBound="551" average="505.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2627?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_248?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9318?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_1000ms_14?type=Runnable" name="Runnable_1000ms_14" activations="periodic_1000ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4270?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2787?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5080?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5180?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7581?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="353" upperBound="833" average="508.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2330?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_695?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4575?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1797?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4886?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_596?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_41?type=Runnable" name="Runnable_6660us_41" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1424?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2362?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4617?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2511?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1251?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4916?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1728?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4793?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4242?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5951?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8121?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="3516" upperBound="6616" average="3895.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2535?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1563?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1251?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_878?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2048?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9615?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_200ms_4?type=Runnable" name="Runnable_200ms_4" activations="periodic_200ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3975?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1898?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1097?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4928?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1617?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3883?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_292?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4090?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_615?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1711?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4375?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5042?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6285?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7007?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="111" upperBound="288" average="158.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4325?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1898?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2274?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1097?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4415?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3682?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4928?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4215?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2710?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3278?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3105?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3033?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9837?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_95?type=Runnable" name="Runnable_10ms_95" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4766?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3028?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2550?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_888?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8688?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8897?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="262" upperBound="547" average="420.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3988?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3928?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9549?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9662?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9695?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9766?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_83?type=Runnable" name="Runnable_20ms_83" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_159?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_347?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4366?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4882?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2105?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4975?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5943?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7623?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="929" upperBound="3976" average="2140.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3951?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2160?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_84?type=Runnable" name="Runnable_20ms_84" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3670?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3158?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2349?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4437?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2116?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5105?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6613?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8501?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1774" upperBound="2331" average="1897.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_522?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3670?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2116?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_1ms_8?type=Runnable" name="Runnable_1ms_8" activations="periodic_1ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_5438?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5572?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5978?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6773?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8223?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8420?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1147" upperBound="1871" average="1313.0" pRemainPromille="5.0E-4" />
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_85?type=Runnable" name="Runnable_20ms_85" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3739?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5204?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7762?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8839?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="107" upperBound="842" average="613.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4364?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1154?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_96?type=Runnable" name="Runnable_10ms_96" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3735?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_637?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4932?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2607?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6174?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7693?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8185?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="305" upperBound="673" average="508.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2489?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1833?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3735?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3655?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4757?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2942?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9698?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_73?type=Runnable" name="Runnable_100ms_73" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2615?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2211?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4817?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_555?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3941?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5242?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5446?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6835?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7214?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7836?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="320" upperBound="566" average="377.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3941?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2673?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_86?type=Runnable" name="Runnable_20ms_86" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4314?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5646?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6821?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7001?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="92" upperBound="1030" average="624.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1296?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3336?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2827?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_97?type=Runnable" name="Runnable_10ms_97" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3202?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2920?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_360?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1573?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4488?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2406?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4905?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3187?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3439?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5324?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7908?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1062" upperBound="4447" average="3229.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_360?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3285?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2203?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2406?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_42?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9576?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_74?type=Runnable" name="Runnable_100ms_74" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4924?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6751?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7954?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="3205" upperBound="4823" average="3641.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9718?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9823?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_87?type=Runnable" name="Runnable_20ms_87" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1804?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4837?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5167?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7246?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7732?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1797" upperBound="10868" average="5929.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4837?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1034?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_226?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_42?type=Runnable" name="Runnable_6660us_42" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3821?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2152?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_881?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5527?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="281" upperBound="563" average="412.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1617?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3358?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3710?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3550?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_954?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1249?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2152?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3114?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_881?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_643?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1810?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2342?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9361?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_88?type=Runnable" name="Runnable_20ms_88" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1319?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4355?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_983?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2341?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="383" upperBound="916" average="777.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_983?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3963?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9664?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_43?type=Runnable" name="Runnable_6660us_43" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2281?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6997?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7141?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7588?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7660?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7742?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7909?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8164?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="163" upperBound="1649" average="873.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3002?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3300?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3755?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9840?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_89?type=Runnable" name="Runnable_20ms_89" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1856?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5700?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7373?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7566?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8767?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="359" upperBound="1076" average="592.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9405?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_1000ms_15?type=Runnable" name="Runnable_1000ms_15" activations="periodic_1000ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_5716?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6519?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6689?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6946?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8868?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="178" upperBound="315" average="251.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2678?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3029?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3597?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3970?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4534?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1331?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_1000ms_16?type=Runnable" name="Runnable_1000ms_16" activations="periodic_1000ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4394?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4906?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_984?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8987?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="422" upperBound="942" average="545.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_125?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4595?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_249?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_820?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_960?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1787?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9629?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_200ms_5?type=Runnable" name="Runnable_200ms_5" activations="periodic_200ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1783?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1274?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_566?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3231?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4840?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2028?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1838?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1358?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2198?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_333?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_531?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_496?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4296?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4558?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5068?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1388" upperBound="2477" average="2093.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4031?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4499?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1783?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1455?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_213?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3344?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1274?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2693?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3202?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1064?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1179?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4625?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9328?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_98?type=Runnable" name="Runnable_10ms_98" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1557?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1143?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3746?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4683?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4746?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6042?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6201?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6226?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7499?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8572?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="578" upperBound="11716" average="7489.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1557?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4377?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3633?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3384?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3731?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9059?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_44?type=Runnable" name="Runnable_6660us_44" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4714?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3662?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="2795" upperBound="4739" average="3268.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1767?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2680?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3481?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1297?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_345?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_583?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_99?type=Runnable" name="Runnable_10ms_99" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4376?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_456?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2793?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6553?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6736?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="447" upperBound="917" average="745.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1772?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3825?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2439?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9779?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_100?type=Runnable" name="Runnable_10ms_100" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1254?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1575?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1823?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1029?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8349?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="509" upperBound="801" average="595.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1254?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3909?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1575?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4240?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1883?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2494?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_45?type=Runnable" name="Runnable_6660us_45" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_748?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1830?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_550?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1264?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_815?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6243?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8665?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="531" upperBound="1075" average="787.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_367?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3688?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2486?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_550?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3790?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1264?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9645?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_75?type=Runnable" name="Runnable_100ms_75" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4927?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4391?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2390?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_163?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4276?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8002?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8439?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8707?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="8273" upperBound="62094" average="20430.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3082?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2974?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1453?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1996?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4641?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_953?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2394?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9719?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_101?type=Runnable" name="Runnable_10ms_101" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_444?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6439?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8637?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="395" upperBound="620" average="425.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1800?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4052?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_1000ms_17?type=Runnable" name="Runnable_1000ms_17" activations="periodic_1000ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_732?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4497?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1630?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_40?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_804?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_191?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1526?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2808?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6756?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7014?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7874?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8627?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="330" upperBound="586" average="454.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_895?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2808?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3542?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9171?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9329?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9687?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_102?type=Runnable" name="Runnable_10ms_102" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3794?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4548?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1072?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3823?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4920?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5261?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6185?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6899?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7921?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8618?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="710" upperBound="983" average="772.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3794?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3184?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2369?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2511?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4252?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4548?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_361?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1072?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_631?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3823?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3517?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_50ms_12?type=Runnable" name="Runnable_50ms_12" activations="periodic_50ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2739?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4181?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2089?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6305?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6315?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7360?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7710?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8829?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="2277" upperBound="5806" average="4035.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3464?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4862?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1163?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9460?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_103?type=Runnable" name="Runnable_10ms_103" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3156?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2576?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4765?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1874?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3395?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4622?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4764?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6110?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6299?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7156?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7536?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="565" upperBound="888" average="580.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4765?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1874?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4239?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2458?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2738?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4146?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_90?type=Runnable" name="Runnable_20ms_90" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3679?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2149?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_514?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6960?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7688?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1025" upperBound="2243" average="1582.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_514?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2473?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_46?type=Runnable" name="Runnable_6660us_46" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2992?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1997?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_365?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_708?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2634?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4822?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3490?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5860?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="374" upperBound="1423" average="804.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4783?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_708?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_850?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9052?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9061?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9338?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_76?type=Runnable" name="Runnable_100ms_76" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4073?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4057?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4016?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5355?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6528?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6607?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7782?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8736?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8894?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="3081" upperBound="9138" average="7929.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4073?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4016?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2817?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_465?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9736?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_sporadic_1500us_1700us_2?type=Runnable" name="Runnable_sporadic_1500us_1700us_2" activations="sporadic_1500us_1700us?type=SporadicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_5128?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5385?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6675?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7630?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8412?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="3930" upperBound="8825" average="5863.0" pRemainPromille="5.0E-4" />
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_77?type=Runnable" name="Runnable_100ms_77" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2695?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6500?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7174?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7318?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8541?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="121" upperBound="585" average="475.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4830?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3889?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4253?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9427?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9912?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_47?type=Runnable" name="Runnable_6660us_47" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_558?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3953?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4050?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2835?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5451?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5689?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="397" upperBound="819" average="584.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3953?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4050?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4980?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2837?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9362?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_sporadic_700us_800us_3?type=Runnable" name="Runnable_sporadic_700us_800us_3" activations="sporadic_700us_800us?type=SporadicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_5267?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="624" upperBound="1166" average="956.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4576?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3119?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_773?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_91?type=Runnable" name="Runnable_20ms_91" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_5571?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5889?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6138?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7679?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7701?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="2687" upperBound="6093" average="4350.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4699?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2091?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2801?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4049?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9732?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_92?type=Runnable" name="Runnable_20ms_92" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_94?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_772?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3650?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7103?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8104?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8747?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="194" upperBound="343" average="272.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3994?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1870?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_772?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4201?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9700?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_2ms_8?type=Runnable" name="Runnable_2ms_8" activations="periodic_2ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2197?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5900?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6843?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7459?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8832?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="125" upperBound="353" average="214.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9667?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_48?type=Runnable" name="Runnable_6660us_48" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_674?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2323?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4246?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2976?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1395?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1574?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6614?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7442?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8386?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="5698" upperBound="10238" average="7699.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4711?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3419?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2976?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_393?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_104?type=Runnable" name="Runnable_10ms_104" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_619?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2978?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_601?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3439?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5228?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="15692" upperBound="25372" average="15908.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_589?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1622?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3326?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2978?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3586?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2960?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_782?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1803?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_78?type=Runnable" name="Runnable_100ms_78" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3071?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_420?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6957?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8283?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8814?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="5627" upperBound="13372" average="6902.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4370?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4744?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_982?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_625?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2449?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3402?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1623?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9637?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9655?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_93?type=Runnable" name="Runnable_20ms_93" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4318?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4399?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7433?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="328" upperBound="1089" average="659.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_77?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4329?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1228?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9480?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_94?type=Runnable" name="Runnable_20ms_94" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1406?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1265?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1043" upperBound="2022" average="1080.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4247?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1216?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_105?type=Runnable" name="Runnable_10ms_105" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2686?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_0?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6425?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6668?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6762?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="4769" upperBound="6122" average="5026.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3698?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4079?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2652?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3360?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9437?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_95?type=Runnable" name="Runnable_20ms_95" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1905?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4828?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2577?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_818?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6383?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7934?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8502?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="690" upperBound="8215" average="4837.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2291?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_73?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2086?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_135?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9672?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_96?type=Runnable" name="Runnable_20ms_96" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1492?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4539?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3130?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7353?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8423?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8724?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="252" upperBound="669" average="560.0" pRemainPromille="5.0E-4" />
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_106?type=Runnable" name="Runnable_10ms_106" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_726?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2605?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_952?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1852?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7021?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="652" upperBound="2406" average="2158.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2311?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3580?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2605?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_227?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3189?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9952?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_79?type=Runnable" name="Runnable_100ms_79" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_661?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2831?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4545?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1076?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2158?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3222?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5391?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7599?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8035?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8307?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="94" upperBound="188" average="101.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_656?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_706?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2488?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3929?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9383?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_97?type=Runnable" name="Runnable_20ms_97" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2887?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3859?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1184?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="455" upperBound="764" average="521.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2618?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_80?type=Runnable" name="Runnable_100ms_80" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3064?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1666?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4595?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5284?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5541?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8889?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="447" upperBound="805" average="621.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1666?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3074?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1586?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9444?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9936?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_98?type=Runnable" name="Runnable_20ms_98" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1510?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8428?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="514" upperBound="1550" average="1371.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1971?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9403?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9652?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_99?type=Runnable" name="Runnable_20ms_99" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1690?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3116?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_237?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7561?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7572?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="540" upperBound="1188" average="651.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_204?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2341?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9019?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9913?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_100?type=Runnable" name="Runnable_20ms_100" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3381?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6199?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6523?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1013" upperBound="2178" average="1118.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1347?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3395?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_658?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3323?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9832?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_107?type=Runnable" name="Runnable_10ms_107" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2025?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4110?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4232?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2276?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2283?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3898?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4127?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4277?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2333?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_605?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7534?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7791?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="16843" upperBound="25391" average="17600.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1902?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_918?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2283?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3764?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9357?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9860?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_200ms_6?type=Runnable" name="Runnable_200ms_6" activations="periodic_200ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4499?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1455?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_213?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_617?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3995?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_519?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3682?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3472?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4806?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2667?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1959?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4774?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3555?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1667?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3094?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1364?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4129?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2190?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3587?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3378?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5643?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5854?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7187?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7875?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="123" upperBound="475" average="241.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3447?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2850?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3995?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4806?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_268?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2667?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4009?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_887?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4425?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_288?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1186?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2232?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1423?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1559?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_108?type=Runnable" name="Runnable_10ms_108" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_943?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4930?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3326?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2137?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_634?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3810?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4713?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5424?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8187?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8703?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="5878" upperBound="25599" average="17831.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_221?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3625?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2137?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3810?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2575?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2357?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9101?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9755?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_109?type=Runnable" name="Runnable_10ms_109" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4788?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_31?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1347?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2701?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1670?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1051?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6164?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6415?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6654?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7825?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8473?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="7175" upperBound="17859" average="10007.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_31?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1912?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3348?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4384?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9346?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_110?type=Runnable" name="Runnable_10ms_110" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2179?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1663?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4112?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5199?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="104" upperBound="756" average="518.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2576?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2596?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2420?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1632?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1100?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3390?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9261?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9821?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_101?type=Runnable" name="Runnable_20ms_101" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_6018?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7387?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8220?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8342?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="4799" upperBound="9246" average="6590.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9121?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9753?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_102?type=Runnable" name="Runnable_20ms_102" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4556?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6151?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7552?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="11057" upperBound="18799" average="13054.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4505?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3158?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_588?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_356?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9356?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_103?type=Runnable" name="Runnable_20ms_103" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4734?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4197?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4569?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3161?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_179?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7531?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8231?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8389?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1179" upperBound="8695" average="4576.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_80?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3534?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_sporadic_4900us_5050us_2?type=Runnable" name="Runnable_sporadic_4900us_5050us_2" activations="sporadic_4900us_5050us?type=SporadicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_5637?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5690?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5715?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7118?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8469?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8982?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="6664" upperBound="11894" average="9783.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1982?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2790?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_915?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9647?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_111?type=Runnable" name="Runnable_10ms_111" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_759?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3526?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_671?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1977?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_23?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6342?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7097?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7392?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7830?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7946?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7994?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="10686" upperBound="23863" average="16460.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_759?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_671?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3355?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_677?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9553?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9871?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_112?type=Runnable" name="Runnable_10ms_112" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4600?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2748?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3320?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1735?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3129?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_666?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2370?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5374?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6387?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6561?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="705" upperBound="4389" average="3908.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3254?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4748?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4600?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2748?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1312?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2209?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3077?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1735?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3938?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3781?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_59?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9009?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_113?type=Runnable" name="Runnable_10ms_113" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1516?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_238?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1241?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3506?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2218?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_306?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_917?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4893?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5888?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="3976" upperBound="21159" average="12185.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1516?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_261?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4101?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_238?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4111?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4610?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4773?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1904?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_1000ms_18?type=Runnable" name="Runnable_1000ms_18" activations="periodic_1000ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3065?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3602?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2894?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_629?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1938?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4781?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2246?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2564?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_441?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8212?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="163" upperBound="286" average="219.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4294?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_605?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4374?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1640?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9893?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_81?type=Runnable" name="Runnable_100ms_81" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2623?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6641?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7292?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7389?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="431" upperBound="1227" average="754.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9775?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_82?type=Runnable" name="Runnable_100ms_82" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3389?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1084?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1956?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4136?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5190?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7745?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="2342" upperBound="5596" average="2872.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1924?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3157?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3767?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_483?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_114?type=Runnable" name="Runnable_10ms_114" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4826?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4985?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_758?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3149?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4321?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8310?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="16140" upperBound="36443" average="19299.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4444?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4985?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1700?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_758?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_781?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9256?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9977?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_104?type=Runnable" name="Runnable_20ms_104" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_5092?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5521?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6640?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8252?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="148" upperBound="762" average="579.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4547?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4514?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2212?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2016?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1217?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9124?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9449?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_105?type=Runnable" name="Runnable_20ms_105" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_140?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5506?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6020?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="4204" upperBound="8089" average="4493.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4618?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_106?type=Runnable" name="Runnable_20ms_106" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_224?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_193?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6376?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6384?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8823?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="53" upperBound="707" average="449.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3391?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4932?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3485?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3166?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_799?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3116?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_sporadic_4900us_5050us_3?type=Runnable" name="Runnable_sporadic_4900us_5050us_3" activations="sporadic_4900us_5050us?type=SporadicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_5103?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6095?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7674?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="7971" upperBound="11518" average="9389.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1940?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2913?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1620?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_49?type=Runnable" name="Runnable_6660us_49" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3473?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3914?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3752?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2719?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4406?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1571?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5723?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1275" upperBound="2445" average="1738.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1386?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4169?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3068?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2905?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_107?type=Runnable" name="Runnable_20ms_107" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3868?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_743?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2318?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3809?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2947?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5619?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6330?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7083?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7455?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="2561" upperBound="3855" average="3250.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3553?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9119?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_108?type=Runnable" name="Runnable_20ms_108" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3979?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3463?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4020?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3435?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1577?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5666?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6062?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="118" upperBound="384" average="269.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3773?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4020?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4976?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_109?type=Runnable" name="Runnable_20ms_109" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3977?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3538?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4074?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4565?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_639?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5705?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6394?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="481" upperBound="789" average="663.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4074?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1500?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2349?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_50?type=Runnable" name="Runnable_6660us_50" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1477?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2077?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3649?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4414?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3697?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5207?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6757?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7563?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8390?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="400" upperBound="1496" average="885.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4659?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2668?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1031?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3649?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4956?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4414?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_957?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_51?type=Runnable" name="Runnable_6660us_51" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2328?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1713?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1433?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5201?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8078?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8136?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8933?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="956" upperBound="2168" average="1363.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2649?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1922?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_219?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1571?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2504?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1713?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_83?type=Runnable" name="Runnable_100ms_83" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4557?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1014?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1062?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_539?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_148?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6043?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6726?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8675?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="2349" upperBound="24183" average="22412.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_344?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2982?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_539?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_148?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9703?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_5ms_7?type=Runnable" name="Runnable_5ms_7" activations="periodic_5ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_118?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5741?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6735?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7024?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="2933" upperBound="17186" average="8897.0" pRemainPromille="5.0E-4" />
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_52?type=Runnable" name="Runnable_6660us_52" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1383?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_844?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5890?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7796?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="862" upperBound="5935" average="3623.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_979?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9392?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_200ms_7?type=Runnable" name="Runnable_200ms_7" activations="periodic_200ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4380?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_422?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2274?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1482?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3143?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4412?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4651?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_790?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1985?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_216?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3658?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1636?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="151" upperBound="235" average="160.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_617?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1482?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4525?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1065?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4233?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_83?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9063?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_53?type=Runnable" name="Runnable_6660us_53" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3731?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4791?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2527?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5694?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6016?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7128?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7720?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="660" upperBound="1257" average="1003.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2637?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2580?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1552?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9105?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9184?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9810?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_84?type=Runnable" name="Runnable_100ms_84" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3623?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2877?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4291?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3165?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3636?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6611?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7484?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8388?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="455" upperBound="810" average="521.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2019?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9805?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_110?type=Runnable" name="Runnable_20ms_110" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4416?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2430?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5307?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5704?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7273?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="8294" upperBound="15572" average="9267.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3739?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2430?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9081?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9226?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9639?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_1000ms_19?type=Runnable" name="Runnable_1000ms_19" activations="periodic_1000ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1496?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2729?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_813?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_152?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2388?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5763?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5924?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8380?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="316" upperBound="1666" average="418.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2388?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1526?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1426?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_85?type=Runnable" name="Runnable_100ms_85" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1926?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4591?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5574?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6667?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6746?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7388?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="336" upperBound="513" average="458.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2186?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1350?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1246?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2818?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4472?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_104?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_1ms_9?type=Runnable" name="Runnable_1ms_9" activations="periodic_1ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2516?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5381?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6286?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8080?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8336?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8455?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1889" upperBound="9037" average="5134.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4321?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_86?type=Runnable" name="Runnable_100ms_86" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2651?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5568?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7038?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="93" upperBound="557" average="364.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_913?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3173?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_111?type=Runnable" name="Runnable_20ms_111" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3551?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3027?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3333?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5680?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6577?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8714?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="558" upperBound="1045" average="698.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_188?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4091?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_940?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2105?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3313?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_115?type=Runnable" name="Runnable_10ms_115" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2954?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2829?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_92?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_836?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4278?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5270?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5681?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6819?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7976?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="200" upperBound="3299" average="2175.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2954?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_482?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1590?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4278?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_112?type=Runnable" name="Runnable_20ms_112" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2856?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6168?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7016?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8324?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="427" upperBound="981" average="572.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2218?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2856?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9090?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9424?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_116?type=Runnable" name="Runnable_10ms_116" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_402?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6771?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6787?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7291?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8656?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8850?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="509" upperBound="888" average="579.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2579?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1308?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_113?type=Runnable" name="Runnable_20ms_113" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1232?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1349?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2122?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_286?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_964?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5896?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6869?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7435?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8457?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="440" upperBound="824" average="553.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2039?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2699?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_286?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3022?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_87?type=Runnable" name="Runnable_100ms_87" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1648?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7750?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8281?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8881?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="42" upperBound="331" average="243.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1903?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_111?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2539?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_54?type=Runnable" name="Runnable_6660us_54" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3613?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3841?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4179?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4508?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3681?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5045?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5531?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7293?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7540?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7548?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7838?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7885?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8321?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8557?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="241" upperBound="528" average="324.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4067?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3841?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4179?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9438?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_5ms_8?type=Runnable" name="Runnable_5ms_8" activations="periodic_5ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_5044?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5086?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5876?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7606?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1025" upperBound="2932" average="2757.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3611?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_917?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9048?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9391?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9885?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_117?type=Runnable" name="Runnable_10ms_117" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4012?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5233?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6279?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6533?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7372?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7786?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="5074" upperBound="17727" average="11034.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1959?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_978?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2599?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_451?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2182?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4535?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2874?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9233?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_114?type=Runnable" name="Runnable_20ms_114" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2371?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5077?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5298?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5660?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6045?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6813?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="4977" upperBound="10365" average="7661.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4523?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9284?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_115?type=Runnable" name="Runnable_20ms_115" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_242?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6010?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6738?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8505?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="511" upperBound="1288" average="708.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_242?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4355?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_417?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_55?type=Runnable" name="Runnable_6660us_55" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2232?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1758?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_11?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3362?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4913?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1463?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3335?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3487?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5304?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8648?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8759?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="552" upperBound="1171" average="786.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4905?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4613?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4167?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1745?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3362?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_88?type=Runnable" name="Runnable_100ms_88" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3016?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_598?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4057?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4935?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7362?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8345?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="103" upperBound="845" average="595.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4664?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4057?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3462?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9255?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_2ms_9?type=Runnable" name="Runnable_2ms_9" activations="periodic_2ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_773?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5950?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7322?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8084?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8098?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="225" upperBound="421" average="346.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9315?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_56?type=Runnable" name="Runnable_6660us_56" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2909?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1247?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_22?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2512?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3357?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3700?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_521?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5548?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6952?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8857?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="511" upperBound="1051" average="805.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3722?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_409?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_116?type=Runnable" name="Runnable_20ms_116" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_583?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4519?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_466?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3270?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6921?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8927?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="300" upperBound="471" average="350.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4492?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_443?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2879?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4519?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2811?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3270?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9957?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_89?type=Runnable" name="Runnable_100ms_89" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4463?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3599?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4634?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4075?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2672?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_316?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_363?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3154?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8890?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="307" upperBound="872" average="739.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2769?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4634?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4075?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3806?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9174?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_117?type=Runnable" name="Runnable_20ms_117" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_8811?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8973?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="87" upperBound="796" average="722.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2085?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_131?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9265?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9588?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_90?type=Runnable" name="Runnable_100ms_90" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3246?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8405?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="6659" upperBound="17912" average="10387.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_134?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_474?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_363?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9954?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9978?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_118?type=Runnable" name="Runnable_20ms_118" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3079?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2358?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4229?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5019?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5347?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6113?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7514?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="2578" upperBound="6770" average="5732.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1377?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_57?type=Runnable" name="Runnable_6660us_57" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1310?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3707?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1743?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2497?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1027?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2788?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2775?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3584?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="6685" upperBound="12716" average="11186.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3898?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1893?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1420?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1027?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1236?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2788?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_190?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_149?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_118?type=Runnable" name="Runnable_10ms_118" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3800?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5333?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5653?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6112?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7234?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7573?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="824" upperBound="3159" average="1815.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3156?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1918?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1165?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9587?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9870?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9991?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9998?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_119?type=Runnable" name="Runnable_20ms_119" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2679?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3964?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_858?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3111?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5787?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6216?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8763?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="256" upperBound="443" average="349.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_787?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3964?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_858?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3111?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4175?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9669?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_120?type=Runnable" name="Runnable_20ms_120" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1871?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6217?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6535?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7242?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="260" upperBound="1205" average="631.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1859?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_0?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3680?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_121?type=Runnable" name="Runnable_20ms_121" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3105?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_593?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1639?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5376?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7736?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="195" upperBound="434" average="400.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1639?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9021?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_119?type=Runnable" name="Runnable_10ms_119" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1596?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1883?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4351?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_373?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3437?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5449?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="7869" upperBound="35376" average="20071.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2518?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3887?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_733?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3530?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2314?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1232?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3756?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_120?type=Runnable" name="Runnable_10ms_120" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4511?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_860?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4872?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5516?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6457?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7802?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7860?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8362?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8804?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="31" upperBound="476" average="157.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_453?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4511?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3268?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9658?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_121?type=Runnable" name="Runnable_10ms_121" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4949?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1992?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_809?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4144?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4783?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_848?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4247?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2167?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5327?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5795?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7926?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="6273" upperBound="30739" average="16857.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4077?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4697?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_809?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1145?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1888?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3339?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_122?type=Runnable" name="Runnable_10ms_122" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_288?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1687?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_287?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1989?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2906?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3217?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3434?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1658?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6824?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7571?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="485" upperBound="3433" average="1987.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3624?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_272?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_709?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1458?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_85?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_1ms_10?type=Runnable" name="Runnable_1ms_10" activations="periodic_1ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_7074?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8601?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="599" upperBound="1765" average="1343.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1335?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2574?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9641?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9690?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_123?type=Runnable" name="Runnable_10ms_123" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3530?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4568?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3003?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_351?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4139?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1325?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4657?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2382?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6894?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7348?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7728?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8758?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="4611" upperBound="16098" average="9909.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4159?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1835?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1595?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4568?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4889?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3003?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1899?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_178?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2524?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4741?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9788?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_1000ms_20?type=Runnable" name="Runnable_1000ms_20" activations="periodic_1000ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4650?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3685?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3352?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2759?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5935?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7202?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7464?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7705?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="247" upperBound="378" average="311.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3468?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_716?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_804?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_124?type=Runnable" name="Runnable_10ms_124" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1063?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3853?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3488?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4377?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2938?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4036?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2455?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5968?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6517?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8063?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="13213" upperBound="17802" average="13836.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3488?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2215?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1545?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2938?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4304?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_125?type=Runnable" name="Runnable_10ms_125" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4200?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3887?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1078?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4979?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_962?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1229?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5089?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5667?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6701?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6958?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7063?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8903?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="369" upperBound="1651" average="546.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1281?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2822?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_795?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4914?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2074?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3178?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4254?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3511?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_126?type=Runnable" name="Runnable_10ms_126" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2039?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_768?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1749?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4439?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="553" upperBound="1196" average="818.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2053?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1542?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4572?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4646?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_1000ms_21?type=Runnable" name="Runnable_1000ms_21" activations="periodic_1000ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4602?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4537?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3815?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2771?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_561?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1549?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5328?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6121?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8344?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="206" upperBound="489" average="300.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4818?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1549?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1537?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3827?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_127?type=Runnable" name="Runnable_10ms_127" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2066?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_944?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2546?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2234?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2201?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4379?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_380?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2798?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4817?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2556?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5488?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5698?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8484?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="7513" upperBound="20308" average="15580.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1882?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2234?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4223?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2355?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_842?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_380?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4526?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1816?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9125?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_50ms_13?type=Runnable" name="Runnable_50ms_13" activations="periodic_50ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_530?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3694?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4853?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4749?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4115?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5856?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6207?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6841?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8124?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8399?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="3164" upperBound="11741" average="9171.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1358?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3378?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1044?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_683?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2813?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4218?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4749?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9270?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9892?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_91?type=Runnable" name="Runnable_100ms_91" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1967?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2408?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1975?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1679?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8161?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="86" upperBound="626" average="330.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4681?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4965?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3162?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1864?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_9542?type=Label" access="write" implementation="explicit" />
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_2ms_10?type=Runnable" name="Runnable_2ms_10" activations="periodic_2ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="578" upperBound="2317" average="1637.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9069?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9531?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_128?type=Runnable" name="Runnable_10ms_128" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2479?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1699?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3616?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2493?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3201?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5353?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6056?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6211?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6967?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7616?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8263?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="8537" upperBound="25413" average="17968.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1699?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2479?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_544?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4017?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1646?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1751?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1572?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3616?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2009?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9143?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_122?type=Runnable" name="Runnable_20ms_122" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1423?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_388?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3518?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3702?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5229?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6262?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8230?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8488?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8896?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8968?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="2017" upperBound="22913" average="16606.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2563?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_620?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3518?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9575?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_123?type=Runnable" name="Runnable_20ms_123" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_662?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7789?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="3726" upperBound="16878" average="9363.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_10?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_662?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4058?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1820?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9214?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_92?type=Runnable" name="Runnable_100ms_92" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_986?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_489?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2893?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3618?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4909?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4299?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4997?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6543?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7813?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8436?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="7799" upperBound="12921" average="9345.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4500?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1252?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2979?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9571?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9686?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_129?type=Runnable" name="Runnable_10ms_129" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4889?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1111?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4610?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_342?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5208?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6475?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8159?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8778?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="548" upperBound="1134" average="708.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_471?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2522?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3477?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_210?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4703?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4249?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_124?type=Runnable" name="Runnable_20ms_124" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3924?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3207?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4780?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2815?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5078?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5188?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5367?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5616?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6397?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8762?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8877?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="15507" upperBound="23194" average="16135.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4161?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1715?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_97?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3207?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2620?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1342?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_93?type=Runnable" name="Runnable_100ms_93" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1065?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4986?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4505?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1688?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2330?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5841?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6826?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8097?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="262" upperBound="994" average="574.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1688?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1437?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_94?type=Runnable" name="Runnable_100ms_94" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4578?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5162?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5407?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="15982" upperBound="22648" average="16197.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3318?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3574?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_657?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2409?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1175?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1740?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1010?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_58?type=Runnable" name="Runnable_6660us_58" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_788?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_821?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3631?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5910?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6222?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7382?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7816?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8686?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="812" upperBound="1211" average="964.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4981?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_271?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3631?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9905?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_2ms_11?type=Runnable" name="Runnable_2ms_11" activations="periodic_2ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_8110?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8983?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="1053" upperBound="4958" average="4496.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9677?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9764?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_59?type=Runnable" name="Runnable_6660us_59" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_1737?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1951?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3792?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5825?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6518?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7704?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8294?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="249" upperBound="1324" average="855.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2986?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1737?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_290?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2377?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_3648?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_1ms_11?type=Runnable" name="Runnable_1ms_11" activations="periodic_1ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2432?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5084?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5823?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5947?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7229?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8051?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="401" upperBound="1695" average="1482.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4245?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4106?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9496?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_125?type=Runnable" name="Runnable_20ms_125" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_340?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3726?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2507?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7999?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="152" upperBound="409" average="300.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4160?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3541?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3726?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_63?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2222?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_95?type=Runnable" name="Runnable_100ms_95" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3512?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2217?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1901?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1885?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4192?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8217?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8489?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="93" upperBound="213" average="148.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_907?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_122?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1447?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1885?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4006?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2945?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_387?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2603?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_100ms_96?type=Runnable" name="Runnable_100ms_96" activations="periodic_100ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4449?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5551?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5965?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6945?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="548" upperBound="1325" average="692.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1892?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3916?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_4724?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_254?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_281?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_130?type=Runnable" name="Runnable_10ms_130" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_2386?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2369?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4183?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1286?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2439?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2960?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1185?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2986?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2367?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1200?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4309?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5114?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_5897?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6108?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7124?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7518?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8322?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8398?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="6507" upperBound="15895" average="10611.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2386?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4183?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1185?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2743?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_10ms_131?type=Runnable" name="Runnable_10ms_131" activations="periodic_10ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_4004?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4404?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4240?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4914?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6213?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6223?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7370?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8313?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8477?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8872?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="169" upperBound="1070" average="630.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4766?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_1588?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3892?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2233?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3050?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2841?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_542?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_6660us_60?type=Runnable" name="Runnable_6660us_60" activations="periodic_6660us?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_313?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3626?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4206?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4669?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_345?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_953?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="3.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6669?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_7648?type=Label" access="read" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="5.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="231" upperBound="1314" average="1152.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3224?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_3822?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_1294?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2758?type=Label" access="write" implementation="explicit" />
+ <items xsi:type="am:LabelAccess" data="Label_2962?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_9228?type=Label" access="write" implementation="timed">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="TIMED" />
+ </customProperties>
+ </items>
+ </activityGraph>
+ </runnables>
+ <runnables xmi:id="Runnable_20ms_126?type=Runnable" name="Runnable_20ms_126" activations="periodic_20ms?type=PeriodicActivation" callback="false" service="false">
+ <activityGraph>
+ <items xsi:type="am:LabelAccess" data="Label_3256?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2641?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6407?type=Label" access="read" implementation="explicit">
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_6531?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="4.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_8992?type=Label" access="read" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ <statistic>
+ <value xsi:type="am:SingleValueStatistic" value="2.0" />
+ </statistic>
+ </items>
+ <items xsi:type="am:Ticks">
+ <default xsi:type="am:DiscreteValueWeibullEstimatorsDistribution" lowerBound="271" upperBound="560" average="525.0" pRemainPromille="5.0E-4" />
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4504?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_4683?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>
+ <items xsi:type="am:LabelAccess" data="Label_2096?type=Label" access="write" implementation="implicit">
+ <customProperties key="COMMUNINCATION_TYPE">
+ <value xsi:type="am:StringObject" value="IMPLICIT" />
+ </customProperties>
+ </items>