diff --git a/.gitignore b/.gitignore index 05330c7..ee83209 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,4 @@ bimp_test_examples/ .vscode/ dist/ poetry.lock +testing_scripts/assets/simulation_warnings.txt \ No newline at end of file diff --git a/prosimos/control_flow_manager.py b/prosimos/control_flow_manager.py index a518a8a..ea509f9 100644 --- a/prosimos/control_flow_manager.py +++ b/prosimos/control_flow_manager.py @@ -2,6 +2,7 @@ import random import secrets import sys +import uuid from collections import deque from enum import Enum from typing import List @@ -23,6 +24,7 @@ def __init__(self, all_case_ids, task_batch_info, curr_task_id, batch_spec, star self.task_batch_info = task_batch_info[curr_task_id] self.batch_spec = batch_spec self.start_time_from_rule = start_time_from_rule + self.batch_id = str(uuid.uuid4()) def is_sequential(self): return self.task_batch_info.type == BATCH_TYPE.SEQUENTIAL diff --git a/prosimos/execution_info.py b/prosimos/execution_info.py index 67acc90..498a5fd 100644 --- a/prosimos/execution_info.py +++ b/prosimos/execution_info.py @@ -25,7 +25,7 @@ def __init__(self): class TaskEvent: def __init__(self, p_case, task_id, resource_id, resource_available_at=None, - enabled_at=None, enabled_datetime=None, bpm_env=None, num_tasks_in_batch=0): + enabled_at=None, enabled_datetime=None, bpm_env=None, num_tasks_in_batch=0, batch_id=None): self.p_case = p_case # ID of the current trace, i.e., index of the trace in log_info list self.task_id = task_id # Name of the task related to the current event self.type = BPMN.TASK # showing whether it's task or event @@ -35,6 +35,7 @@ def __init__(self, p_case, task_id, resource_id, resource_available_at=None, self.normalized_waiting = None self.normalized_processing = None self.worked_intervals = [] + self.batch_id = batch_id if resource_available_at is not None: # Time moment in seconds from beginning, i.e., first event has time = 0 @@ -91,6 +92,7 @@ def create_event_entity(cls, c_event: EnabledEvent, ended_at, ended_datetime): cls.idle_processing_time = 0.0 cls.cycle_time = 0.0 cls.processing_time = 0.0 + cls.batch_id = c_event.batch_info_exec.batch_id if c_event.batch_info_exec is not None else None return cls diff --git a/prosimos/file_manager.py b/prosimos/file_manager.py index 04478e6..97f5e8a 100644 --- a/prosimos/file_manager.py +++ b/prosimos/file_manager.py @@ -5,7 +5,7 @@ def __init__(self, chunk_size, file_writter, additional_column_names = []): self.chunk_size = chunk_size self.data_buffer = list() self.file_writter = file_writter - + self.has_batch = "batch_id" in additional_column_names self._add_header_row(additional_column_names) def add_csv_row(self, csv_row): diff --git a/prosimos/simulation_engine.py b/prosimos/simulation_engine.py index 6f9470f..9b1a905 100644 --- a/prosimos/simulation_engine.py +++ b/prosimos/simulation_engine.py @@ -40,6 +40,8 @@ def __init__(self, sim_setup: SimDiffSetup, stat_fwriter, log_fwriter): self.sim_resources = dict() self.stat_fwriter = stat_fwriter self.additional_columns = self.sim_setup.all_attributes.get_all_columns_generated() + if self.sim_setup.batch_processing not in [None, {}]: + self.additional_columns.append("batch_id") self.log_writer = FileManager(10000, log_fwriter, self.additional_columns) self.log_info = LogInfo(sim_setup) self.executed_events = 0 @@ -363,8 +365,11 @@ def get_csv_row_data(self, full_event: TaskEvent): ) all_attrs = self.sim_setup.bpmn_graph.get_all_attributes(full_event.p_case) - values = ["" if all_attrs.get(col) is None else all_attrs.get(col) for col in self.additional_columns] + # values = ["" if all_attrs.get(col) is None else all_attrs.get(col) for col in self.additional_columns] + values = ["" if all_attrs.get(col) is None else all_attrs.get(col) for col in self.additional_columns if col != "batch_id"] + if self.log_writer.has_batch: + values.append(str(full_event.batch_id)) return [*row_basic_info, *values] def append_any_enabled_batch_tasks(self, current_event: EnabledEvent) -> List[EnabledEvent]: @@ -492,6 +497,7 @@ def execute_seq_task_batch(self, c_event: EnabledEvent, chunks): enabled_datetime, self, num_tasks_in_batch, + c_event.batch_info_exec.batch_id ) self.sim_resources[r_id].worked_time += full_evt.ideal_duration @@ -543,6 +549,7 @@ def execute_parallel_task_batch(self, c_event: EnabledEvent, chunks): enabled_datetime, self, num_tasks_in_batch, + c_event.batch_info_exec.batch_id ) ( diff --git a/testing_scripts/assets/1_task-batch.bpmn b/testing_scripts/assets/1_task-batch.bpmn new file mode 100644 index 0000000..70e4ce5 --- /dev/null +++ b/testing_scripts/assets/1_task-batch.bpmn @@ -0,0 +1,22 @@ + + + + + FLOW_START_FIRST + + + + + FLOW_START_FIRST + FLOW_FIRST_END + + + + FLOW_FIRST_END + + + diff --git a/testing_scripts/assets/1_task-batch.json b/testing_scripts/assets/1_task-batch.json new file mode 100644 index 0000000..fac27a1 --- /dev/null +++ b/testing_scripts/assets/1_task-batch.json @@ -0,0 +1,73 @@ +{ + "resource_profiles": [ + { + "id": "FIRST_ACTIVITY", + "name": "Base Resource Pool", + "resource_list": [ + { + "id": "BASE_RESOURCE", + "name": "BASE_RESOURCE", + "cost_per_hour": 10, + "amount": 1, + "calendar": "BASE_CALENDAR", + "assigned_tasks": ["FIRST_ACTIVITY"] + } + ], + "fixed_cost_fn": "15" + } + ], + "arrival_time_distribution": { + "distribution_name": "fix", + "distribution_params": [{ "value": 86400 }] + }, + "arrival_time_calendar": [ + { + "from": "MONDAY", + "to": "SUNDAY", + "beginTime": "09:00:00", + "endTime": "10:00:00" + } + ], + "gateway_branching_probabilities": [], + "task_resource_distribution": [ + { + "task_id": "FIRST_ACTIVITY", + "resources": [ + { + "resource_id": "BASE_RESOURCE", + "distribution_name": "fix", + "distribution_params": [{ "value": 3600 }] + } + ] + } + ], + "resource_calendars": [ + { + "id": "BASE_CALENDAR", + "name": "BASE_CALENDAR", + "time_periods": [ + { + "to": "FRIDAY", + "from": "MONDAY", + "beginTime": "09:00:00", + "endTime": "18:00:00" + } + ] + } + ], + "event_distribution": {}, + "batch_processing": [ + { + "task_id": "FIRST_ACTIVITY", + "type": "Parallel", + "size_distrib": [ + { "key": "1", "value": 0.0 }, + { "key": "4", "value": 1.0 } + ], + "duration_distrib": [{ "key": "4", "value": 0.5 }], + "firing_rules": [[{ "attribute": "size", "comparison": "=", "value": 4 }]] + } + ], + "start_time": "2000-01-01T00:00:00Z", + "total_cases": 8 +} diff --git a/testing_scripts/assets/attributes_interaction/attributes_interaction.json b/testing_scripts/assets/attributes_interaction/attributes_interaction.json index a0686f8..2d5bb61 100644 --- a/testing_scripts/assets/attributes_interaction/attributes_interaction.json +++ b/testing_scripts/assets/attributes_interaction/attributes_interaction.json @@ -1 +1 @@ -{"task_resource_distribution": [{"task_id": "Activity_1gpdzmu", "resources": [{"distribution_name": "fix", "distribution_params": [{"value": 1}], "resource_id": "sid-e9dfbb63-376b-4689-955e-f797570bab28_1"}]}, {"task_id": "Activity_09vt3u8", "resources": [{"distribution_name": "fix", "distribution_params": [{"value": 0}], "resource_id": "sid-e9dfbb63-376b-4689-955e-f797570bab28_1"}]}, {"task_id": "Activity_1do6fuk", "resources": [{"distribution_name": "fix", "distribution_params": [{"value": 0}], "resource_id": "sid-e9dfbb63-376b-4689-955e-f797570bab28_1"}]}], "resource_calendars": [{"id": "sid-30dd3c27-2d47-41da-beaa-997a668ef5b8", "name": "default schedule", "time_periods": [{"from": "MONDAY", "to": "FRIDAY", "beginTime": "00:00:00.000", "endTime": "23:59:00.000", "probability": 0.6807814745471341}], "workload_ratio": [{"from": "MONDAY", "to": "FRIDAY", "beginTime": "00:00:00.000", "endTime": "23:59:00.000", "probability": 0.381054284888934}]}], "gateway_branching_probabilities": [], "arrival_time_distribution": {"distribution_name": "fix", "distribution_params": [{"value": 1}]}, "arrival_time_calendar": [{"from": "MONDAY", "to": "SUNDAY", "beginTime": "00:00:00.000", "endTime": "23:59:00.000"}], "resource_profiles": [{"id": "sid-e9dfbb63-376b-4689-955e-f797570bab28", "name": "Default resource profile", "resource_list": [{"id": "sid-e9dfbb63-376b-4689-955e-f797570bab28_1", "name": "Default resource profile 1", "cost_per_hour": 0, "amount": 1, "calendar": "sid-30dd3c27-2d47-41da-beaa-997a668ef5b8", "assignedTasks": []}]}], "event_distribution": [], "batch_processing": [], "case_attributes": [{"name": "G_CASE_EVENT", "type": "continuous", "values": {"distribution_name": "fix", "distribution_params": [{"value": 1.0}]}}], "prioritisation_rules": [], "model_type": "FUZZY", "granule_size": {"time_unit": "minutes", "value": 1}, "global_attributes": [{"name": "G_CASE_EVENT", "type": "continuous", "values": {"distribution_name": "fix", "distribution_params": [{"value": 0.0}]}}], "event_attributes": [{"event_id": "Activity_1gpdzmu", "attributes": [{"name": "G_CASE_EVENT", "type": "continuous", "values": {"distribution_name": "fix", "distribution_params": [{"value": 2.0}]}}]}]} +{"task_resource_distribution": [{"task_id": "Activity_1gpdzmu", "resources": [{"distribution_name": "fix", "distribution_params": [{"value": 1}], "resource_id": "sid-e9dfbb63-376b-4689-955e-f797570bab28_1"}]}, {"task_id": "Activity_09vt3u8", "resources": [{"distribution_name": "fix", "distribution_params": [{"value": 0}], "resource_id": "sid-e9dfbb63-376b-4689-955e-f797570bab28_1"}]}, {"task_id": "Activity_1do6fuk", "resources": [{"distribution_name": "fix", "distribution_params": [{"value": 0}], "resource_id": "sid-e9dfbb63-376b-4689-955e-f797570bab28_1"}]}], "resource_calendars": [{"id": "sid-30dd3c27-2d47-41da-beaa-997a668ef5b8", "name": "default schedule", "time_periods": [{"from": "MONDAY", "to": "FRIDAY", "beginTime": "00:00:00.000", "endTime": "23:59:00.000", "probability": 0.5741927864656469}], "workload_ratio": [{"from": "MONDAY", "to": "FRIDAY", "beginTime": "00:00:00.000", "endTime": "23:59:00.000", "probability": 0.247589732040706}]}], "gateway_branching_probabilities": [], "arrival_time_distribution": {"distribution_name": "fix", "distribution_params": [{"value": 1}]}, "arrival_time_calendar": [{"from": "MONDAY", "to": "SUNDAY", "beginTime": "00:00:00.000", "endTime": "23:59:00.000"}], "resource_profiles": [{"id": "sid-e9dfbb63-376b-4689-955e-f797570bab28", "name": "Default resource profile", "resource_list": [{"id": "sid-e9dfbb63-376b-4689-955e-f797570bab28_1", "name": "Default resource profile 1", "cost_per_hour": 0, "amount": 1, "calendar": "sid-30dd3c27-2d47-41da-beaa-997a668ef5b8", "assignedTasks": []}]}], "event_distribution": [], "batch_processing": [], "case_attributes": [{"name": "G_CASE_EVENT", "type": "continuous", "values": {"distribution_name": "fix", "distribution_params": [{"value": 1.0}]}}], "prioritisation_rules": [], "model_type": "FUZZY", "granule_size": {"time_unit": "minutes", "value": 1}, "global_attributes": [{"name": "G_CASE_EVENT", "type": "continuous", "values": {"distribution_name": "fix", "distribution_params": [{"value": 0.0}]}}], "event_attributes": [{"event_id": "Activity_1gpdzmu", "attributes": [{"name": "G_CASE_EVENT", "type": "continuous", "values": {"distribution_name": "fix", "distribution_params": [{"value": 2.0}]}}]}]} \ No newline at end of file diff --git a/testing_scripts/assets/event_attributes/simulation_warnings.txt b/testing_scripts/assets/event_attributes/simulation_warnings.txt index 4598c86..ad86445 100644 --- a/testing_scripts/assets/event_attributes/simulation_warnings.txt +++ b/testing_scripts/assets/event_attributes/simulation_warnings.txt @@ -1,19 +1,18 @@ Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC +TASK 'B' (ID: sid-4B24111F-B305-4608-9E12-744B47C44D0D) is used less frequently, only in 0 out of 6 cases (0.00%). Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -TASK 'B' (ID: sid-4B24111F-B305-4608-9E12-744B47C44D0D) is used less frequently, only in 0 out of 10 cases (0.00%). Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC TASK 'B' (ID: sid-4B24111F-B305-4608-9E12-744B47C44D0D) is used less frequently, only in 0 out of 3 cases (0.00%). Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -TASK 'B' (ID: sid-4B24111F-B305-4608-9E12-744B47C44D0D) is used less frequently, only in 0 out of 3 cases (0.00%). Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -TASK 'B' (ID: sid-4B24111F-B305-4608-9E12-744B47C44D0D) is used less frequently, only in 0 out of 4 cases (0.00%). Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC +TASK 'B' (ID: sid-4B24111F-B305-4608-9E12-744B47C44D0D) is used less frequently, only in 0 out of 9 cases (0.00%). Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC @@ -39,7 +38,6 @@ Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some a Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -TASK 'B' (ID: sid-4B24111F-B305-4608-9E12-744B47C44D0D) is used less frequently, only in 0 out of 10 cases (0.00%). Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC diff --git a/testing_scripts/assets/simulation_warnings.txt b/testing_scripts/assets/simulation_warnings.txt deleted file mode 100644 index bdb35ea..0000000 --- a/testing_scripts/assets/simulation_warnings.txt +++ /dev/null @@ -1,1817 +0,0 @@ -Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -TASK 'B' (ID: sid-4B24111F-B305-4608-9E12-744B47C44D0D) is used less frequently, only in 0 out of 10 cases (0.00%). -Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -TASK 'B' (ID: sid-4B24111F-B305-4608-9E12-744B47C44D0D) is used less frequently, only in 0 out of 3 cases (0.00%). -Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -TASK 'B' (ID: sid-4B24111F-B305-4608-9E12-744B47C44D0D) is used less frequently, only in 0 out of 3 cases (0.00%). -Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -TASK 'B' (ID: sid-4B24111F-B305-4608-9E12-744B47C44D0D) is used less frequently, only in 0 out of 4 cases (0.00%). -Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -TASK 'B' (ID: sid-4B24111F-B305-4608-9E12-744B47C44D0D) is used less frequently, only in 0 out of 5 cases (0.00%). -Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -TASK 'B' (ID: sid-4B24111F-B305-4608-9E12-744B47C44D0D) is used less frequently, only in 0 out of 10 cases (0.00%). -Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -Gateway sid-6B518C80-2B96-4C95-B6DE-F9E4A75FF191 is using conditions, but some are missing. Flows without conditions: sid-6FD4FFD3-5784-4D33-9509-234EAB886930, sid-9E95A790-241E-4629-8D67-E9A2CE55E3DC -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[OR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -TASK 'C' (ID: Activity_0paaiex) is used less frequently, only in 0 out of 250 cases (0.00%). -TASK 'A' (ID: Activity_0ydef2v) is used less frequently, only in 0 out of 250 cases (0.00%). -TASK 'C' (ID: Activity_0paaiex) is used less frequently, only in 0 out of 250 cases (0.00%). -Gateway Gateway_004nfcw is using conditions, but some are missing. Flows without conditions: Flow_1rd4tfv, Flow_0qke4ke -TASK 'B' (ID: Activity_1tvjx3e) is used less frequently, only in 0 out of 250 cases (0.00%). -TASK 'C' (ID: Activity_0paaiex) is used less frequently, only in 0 out of 250 cases (0.00%). -Gateway Gateway_004nfcw is using conditions, but some are missing. Flows without conditions: Flow_0cn0o08, Flow_1rd4tfv, Flow_0qke4ke -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_004nfcw all conditions evaluated to false and no default path. Using probabilities. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -Gateway_004nfcw more than 1 XOR gateway conditions evaluated to positive result. Scaled probabilities were used. -TASK 'C' (ID: Activity_0paaiex) is used less frequently, only in 0 out of 250 cases (0.00%). -TASK 'A' (ID: Activity_0ydef2v) is used less frequently, only in 0 out of 250 cases (0.00%). -TASK 'C' (ID: Activity_0paaiex) is used less frequently, only in 0 out of 250 cases (0.00%). -Gateway Gateway_004nfcw is using conditions, but some are missing. Flows without conditions: Flow_1rd4tfv, Flow_0qke4ke -TASK 'B' (ID: Activity_1tvjx3e) is used less frequently, only in 0 out of 250 cases (0.00%). -TASK 'C' (ID: Activity_0paaiex) is used less frequently, only in 0 out of 250 cases (0.00%). -Gateway Gateway_004nfcw is using conditions, but some are missing. Flows without conditions: Flow_0cn0o08, Flow_1rd4tfv, Flow_0qke4ke -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -[XOR] Gateway_19b9wcy all conditions evaluated to false and no default path. Using probabilities. -TASK 'Handle order response' (ID: Activity_0z0ydqv) is used less frequently, only in 0 out of 5 cases (0.00%). -INTERMEDIATE_EVENT 'Order response received' (ID: Event_1qclhcl) is used less frequently, only in 0 out of 5 cases (0.00%). -INTERMEDIATE_EVENT 'Error message received' (ID: Event_052kspk) is used less frequently, only in 0 out of 5 cases (0.00%). diff --git a/testing_scripts/assets/with_event_gateway_logs.csv b/testing_scripts/assets/with_event_gateway_logs.csv deleted file mode 100644 index 4b4e78c..0000000 --- a/testing_scripts/assets/with_event_gateway_logs.csv +++ /dev/null @@ -1,25 +0,0 @@ -case_id,activity,enable_time,start_time,end_time,resource -0,Submit replenishment order,2022-06-22 09:00:00.000000+03:00,2022-06-22 09:00:00.000000+03:00,2022-06-22 09:09:32.198352+03:00,Default resource-000001 -0,Timer Event,2022-06-22 09:09:32.198352+03:00,2022-06-22 09:09:32.198352+03:00,2022-06-22 12:09:32.198352+03:00,No assigned resource -0,4h,2022-06-22 09:09:32.198352+03:00,2022-06-22 09:09:32.198352+03:00,2022-06-22 13:09:32.198352+03:00,No assigned resource -1,Submit replenishment order,2022-06-22 09:09:32.838776+03:00,2022-06-22 09:09:32.838776+03:00,2022-06-22 09:19:05.037128+03:00,Default resource-000001 -1,Timer Event,2022-06-22 09:19:05.037128+03:00,2022-06-22 09:19:05.037128+03:00,2022-06-22 12:19:05.037128+03:00,No assigned resource -1,4h,2022-06-22 09:19:05.037128+03:00,2022-06-22 09:19:05.037128+03:00,2022-06-22 13:19:05.037128+03:00,No assigned resource -2,Submit replenishment order,2022-06-22 09:19:05.677553+03:00,2022-06-22 09:19:05.677553+03:00,2022-06-22 09:28:37.875905+03:00,Default resource-000001 -2,Timer Event,2022-06-22 09:28:37.875905+03:00,2022-06-22 09:28:37.875905+03:00,2022-06-22 12:28:37.875905+03:00,No assigned resource -2,4h,2022-06-22 09:28:37.875905+03:00,2022-06-22 09:28:37.875905+03:00,2022-06-22 13:28:37.875905+03:00,No assigned resource -3,Submit replenishment order,2022-06-22 09:28:38.516329+03:00,2022-06-22 09:28:38.516329+03:00,2022-06-22 09:38:10.714681+03:00,Default resource-000001 -3,Timer Event,2022-06-22 09:38:10.714681+03:00,2022-06-22 09:38:10.714681+03:00,2022-06-22 12:38:10.714681+03:00,No assigned resource -3,4h,2022-06-22 09:38:10.714681+03:00,2022-06-22 09:38:10.714681+03:00,2022-06-22 13:38:10.714681+03:00,No assigned resource -4,Submit replenishment order,2022-06-22 09:38:11.355106+03:00,2022-06-22 09:38:11.355106+03:00,2022-06-22 09:47:43.553458+03:00,Default resource-000001 -4,4h,2022-06-22 09:47:43.553458+03:00,2022-06-22 09:47:43.553458+03:00,2022-06-22 13:47:43.553458+03:00,No assigned resource -0,Notifying purchasing officer,2022-06-22 12:09:32.198352+03:00,2022-06-22 15:00:00.000000+03:00,2022-06-22 15:00:00.755790+03:00,Default resource-000001 -1,Notifying purchasing officer,2022-06-22 12:19:05.037128+03:00,2022-06-22 15:00:00.755790+03:00,2022-06-22 15:00:05.004309+03:00,Default resource-000001 -2,Notifying purchasing officer,2022-06-22 12:28:37.875905+03:00,2022-06-22 15:00:05.004309+03:00,2022-06-22 15:00:05.940067+03:00,Default resource-000001 -3,Notifying purchasing officer,2022-06-22 12:38:10.714681+03:00,2022-06-22 15:00:05.940067+03:00,2022-06-22 15:00:17.603856+03:00,Default resource-000001 -4,Notifying purchasing officer,2022-06-22 12:47:43.553458+03:00,2022-06-22 15:00:17.603856+03:00,2022-06-22 15:00:20.100992+03:00,Default resource-000001 -0,Register Time Limit exceeded,2022-06-22 13:09:32.198352+03:00,2022-06-22 15:00:20.100992+03:00,2022-06-22 15:00:21.492649+03:00,Default resource-000001 -1,Register Time Limit exceeded,2022-06-22 13:19:05.037128+03:00,2022-06-22 15:00:21.492649+03:00,2022-06-22 15:00:23.194822+03:00,Default resource-000001 -2,Register Time Limit exceeded,2022-06-22 13:28:37.875905+03:00,2022-06-22 15:00:23.194822+03:00,2022-06-22 15:00:24.297535+03:00,Default resource-000001 -3,Register Time Limit exceeded,2022-06-22 13:38:10.714681+03:00,2022-06-22 15:00:24.297535+03:00,2022-06-22 15:00:24.642035+03:00,Default resource-000001 -4,Register Time Limit exceeded,2022-06-22 13:47:43.553458+03:00,2022-06-22 15:00:24.642035+03:00,2022-06-22 15:00:25.351602+03:00,Default resource-000001 diff --git a/testing_scripts/assets/with_event_gateway_stats.csv b/testing_scripts/assets/with_event_gateway_stats.csv deleted file mode 100644 index 821085b..0000000 --- a/testing_scripts/assets/with_event_gateway_stats.csv +++ /dev/null @@ -1,27 +0,0 @@ -started_at,2022-06-22 09:00:00+03:00 -completed_at,2022-06-22 15:00:25.351602+03:00 -"" -Resource Utilization -Resource ID,Resource name,Utilization Ratio,Tasks Allocated,Worked Time (seconds),Available Time (seconds),Pool ID,Pool name -Default resource-000001,Default resource-000001,0.39947445039816,15,2886.3433601424144,7225.351601999999,Activity_0z0ydqv,Handle order response -"Friday, 14:00","Friday, 14:00",0.0,0,0,7225.351601999999,Event_0bsdbzb,"Friday, 14:00" -Order response received,Order response received,0.0,0,0,14425.351601999999,Event_1qclhcl,Order response received -Error message received,Error message received,0.0,0,0,10825.351601999999,Event_052kspk,Error message received -4h,4h,0.0,0,0,10825.351601999999,Event_0761x5g,4h -"" -Individual Task Statistics -Name,Count,Min Duration,Max Duration,Avg Duration,Total Duration,Min Waiting Time,Max Waiting Time,Avg Waiting Time,Total Waiting Time,Min Processing Time,Max Processing Time,Avg Processing Time,Total Processing Time,Min Cycle Time,Max Cycle Time,Avg Cycle Time,Total Cycle Time,Min Idle Time,Max Idle Time,Avg Idle Time,Total Idle Time,Min Idle Cycle Time,Max Idle Cycle Time,Avg Idle Cycle Time,Total Idle Cycle Time,Min Idle Processing Time,Max Idle Processing Time,Avg Idle Processing Time,Total Idle Processing Time,Min Cost,Max Cost,Avg Cost,Total Cost -Submit replenishment order,5,1.7976931348623157e+308,0,0,0,0,0,0.0,0.0,572.1983519066195,572.1983519066196,572.1983519066195,2860.991759533097,572.1983519066195,572.1983519066196,572.1983519066195,2860.991759533097,9.338043582829414e-08,9.338043582829414e-08,9.338043582829414e-08,4.669021791414707e-07,572.1983519999999,572.198352,572.1983519999999,2860.9917599999994,572.1983519999999,572.198352,572.1983519999999,2860.9917599999994,0.15894398664072762,0.15894398664072765,0.15894398664072762,0.7947199332036381 -Timer Event,5,1.7976931348623157e+308,0,0,0,0.0,0,0.0,0.0,0.0,0,0.0,0.0,0.0,0,0.0,0.0,0.0,0,0.0,0.0,0.0,0,0.0,0.0,0.0,0,0.0,0.0,0.0,0,0.0,0.0 -4h,5,1.7976931348623157e+308,0,0,0,0.0,0,0.0,0.0,0.0,0,0.0,0.0,0.0,0,0.0,0.0,0.0,0,0.0,0.0,0.0,0,0.0,0.0,0.0,0,0.0,0.0,0.0,0,0.0,0.0 -Notifying purchasing officer,5,1.7976931348623157e+308,0,0,0,7954.0503977669505,10227.801648,9087.984899645373,45439.924498226865,0.7557904759705707,11.663788269648649,4.020198318931597,20.100991594657987,7956.547534008416,10228.557438475971,9092.005097964302,45460.02548982151,0.0,3.355315216779786e-07,7.848537340038319e-08,3.92426867001916e-07,7956.547534008416,10228.557438475971,9092.00509804279,45460.02549021395,0.7557904759705707,11.663788269648649,4.020198397416971,20.100991987084853,0.00020994179888071408,0.0032399411860135133,0.001116721755258777,0.0055836087762938845 -Register Time Limit exceeded,5,1.7976931348623157e+308,0,0,0,4361.08857677563,6647.902639987085,5504.8697015418165,27524.34850770908,0.3445000531137339,1.7021732390130637,1.05012180293157,5.25060901465785,4361.798143323834,6649.294296686326,5505.919823344748,27529.59911672374,0.0,4.5179828478403294e-07,1.5051158843704116e-07,7.525579421852058e-07,4361.798143775632,6649.2942969870855,5505.919823495259,27529.599117476297,0.3445000531137339,1.7021732390130637,1.0501219534431585,5.250609767215792,9.569445919825941e-05,0.000472825899725851,0.000291700500814325,0.001458502504071625 -"" -Overall Scenario Statistics -KPI,Min,Max,Average,Accumulated Value,Trace Ocurrences -cycle_time,4933.996496,7221.492649,6078.1181758,30390.590879,5 -processing_time,574.236823,584.206641,577.2686723999999,2886.3433619999996,5 -idle_cycle_time,19333.996496,21621.492649,20478.1181758,102390.590879,5 -idle_processing_time,14974.236823,14984.206641,14977.2686724,74886.343362,5 -waiting_time,7961.088577,10247.90264,9104.8697018,45524.348509,5 -idle_time,14400.0,14400.0,14400.0,72000.0,5 diff --git a/testing_scripts/test_attributes_interaction.py b/testing_scripts/test_attributes_interaction.py index 19352b5..ed50a3a 100644 --- a/testing_scripts/test_attributes_interaction.py +++ b/testing_scripts/test_attributes_interaction.py @@ -7,6 +7,7 @@ import logging import random from testing_scripts.bimp_diff_sim_tests import run_diff_res_simulation +from testing_scripts.test_batching_stats import remove_files pd.set_option('display.max_columns', None) pd.set_option('display.max_rows', None) @@ -435,6 +436,8 @@ def test_attributes_interaction(assets_path, test_config): assert os.path.isfile(sim_stats), "Simulation stats file is not created at the specified path." assert os.path.isfile(warning_logs), "Simulation warnings file is not created at the specified path." + remove_files([warning_logs, sim_logs, sim_stats]) + def _modify_json_parameters(json_path, parameters): with open(json_path, "r") as f: diff --git a/testing_scripts/test_batching_stats.py b/testing_scripts/test_batching_stats.py new file mode 100644 index 0000000..26b3270 --- /dev/null +++ b/testing_scripts/test_batching_stats.py @@ -0,0 +1,119 @@ +import os +from pathlib import Path + +import pandas as pd + +from prosimos.simulation_engine import run_simulation +from testing_scripts.bimp_diff_sim_tests import run_diff_res_simulation + + +def get_path(sub_folder: str = None): + entry_path: Path + if os.path.basename(os.getcwd()) == "testing_scripts": + entry_path = Path("assets") + else: + entry_path = Path("testing_scripts/assets") + + return entry_path / sub_folder if sub_folder is not None else entry_path + + +def remove_files(files_to_delete): + for file in files_to_delete: + if file.exists(): + os.remove(file) + + +def test_batching_id_saved_to_log(): + # ====== ARRANGE ====== + assets_path = get_path() + + model_path = assets_path / "1_task-batch.bpmn" + json_path = assets_path / "1_task-batch.json" + sim_stats = assets_path / "1_task-batch_stats.csv" + sim_logs = assets_path / "1_task-batch_logs.csv" + + start_string = "2022-06-21 13:22:30.035185+03:00" + + # ====== ACT ====== + _, _ = run_diff_res_simulation( + start_string, 10, model_path, json_path, sim_stats, sim_logs, True + ) + + # ====== ASSERT ====== + df = pd.read_csv(sim_logs) + # 1. Group by "case_id" and ensure 10 cases exist + grouped_by_case_id = df.groupby(by="case_id")["case_id"] + assert ( + grouped_by_case_id.count().size == 10 + ), "The total number of simulated cases does not equal to the setup number" + + # 2. Check if "batch_id" column exists in output event log + assert "batch_id" in df.columns, "Column 'batch_id' is missing from the log" + + # 3. Check if "batch_id" column has no None (NaN) values + assert df["batch_id"].notna().all(), "Column 'batch_id' contains None or NaN values" + + # 4. Verify batch_id grouping conditions + expected_case_groups = [ + [0, 1, 2, 3], # Group 1 + [4, 5, 6, 7], # Group 2 + [8, 9] # Group 3 + ] + batch_ids_per_group = [df[df["case_id"].isin(group)]["batch_id"].unique() for group in expected_case_groups] + + # Check that each group has exactly one unique batch_id + for i, batch_ids in enumerate(batch_ids_per_group): + assert len(batch_ids) == 1, f"Case group {expected_case_groups[i]} has inconsistent batch_id values" + + # Check that each group has a different batch_id from the previous one + for i in range(len(batch_ids_per_group) - 1): + assert batch_ids_per_group[i][0] != batch_ids_per_group[i + 1][0], \ + f"Batch ID for case group {expected_case_groups[i]} is the same as the next group" + + remove_files([sim_logs, sim_stats]) + + +def test_batching_returned_but_not_saved_in_log(): + # ====== ARRANGE ====== + assets_path = get_path() + + model_path = assets_path / "1_task-batch.bpmn" + json_path = assets_path / "1_task-batch.json" + + # ====== ACT ====== + _, sim_out = run_simulation(model_path, json_path, 10) + + for trace in sim_out.trace_list: + for evt in trace.event_list: + assert evt.batch_id is not None, "Batch ID cannot be None" + + +def test_no_batching_saved_to_log_if_no_batch_in_model(): + # ====== ARRANGE ====== + assets_path = get_path("attributes_interaction") + + model_path = assets_path / "attributes_interaction_model.bpmn" + json_path = assets_path / "attributes_interaction.json" + sim_stats = assets_path / "attributes_interaction_stats.csv" + sim_logs = assets_path / "attributes_interaction_logs.csv" + sim_warnings = assets_path / "simulation_warnings.txt" + + start_string = "2022-06-21 13:22:30.035185+03:00" + + # ====== ACT ====== + _, sim_out = run_diff_res_simulation( + start_string, 10, model_path, json_path, sim_stats, sim_logs, True + ) + + # ====== ASSERT ====== + df = pd.read_csv(sim_logs) + # 1. Group by "case_id" and ensure 10 cases exist + grouped_by_case_id = df.groupby(by="case_id")["case_id"] + assert ( + grouped_by_case_id.count().size == 10 + ), "The total number of simulated cases does not equal to the setup number" + + # 2. Check if "batch_id" column exists in output event log + assert "batch_id" not in df.columns, "Column 'batch_id' is wrongly added to the log" + + remove_files([sim_logs, sim_stats, sim_warnings]) diff --git a/testing_scripts/test_gateway_condition.py b/testing_scripts/test_gateway_condition.py index 5737268..d87c6ec 100644 --- a/testing_scripts/test_gateway_condition.py +++ b/testing_scripts/test_gateway_condition.py @@ -109,9 +109,10 @@ def generate_test_config(test_name, activities, json_filename, bpmn_filename, to activities=set(["A", "B", "C"]), activities_per_case=[1, 1], total_cases=TOTAL_CASES: generate_test_config(test_name, activities, json_filename, bpmn_filename, total_cases, activities_per_case))(), - (lambda test_name="Test XOR with multiple true conditions should use probabilities on true conditions and use 1 flow", - bpmn_filename="gateway_condition_xor_model.bpmn", json_filename="gateway_multiple_true_condition.json", - activities=set(["A", "B"]), activities_per_case=[1, 1], total_cases=TOTAL_CASES: + (lambda + test_name="Test XOR with multiple true conditions should use probabilities on true conditions and use 1 flow", + bpmn_filename="gateway_condition_xor_model.bpmn", json_filename="gateway_multiple_true_condition.json", + activities=set(["A", "B"]), activities_per_case=[1, 1], total_cases=TOTAL_CASES: generate_test_config(test_name, activities, json_filename, bpmn_filename, total_cases, activities_per_case))(), (lambda test_name="Test XOR with one true condition should use 1 true flow", @@ -131,6 +132,7 @@ def generate_test_config(test_name, activities, json_filename, bpmn_filename, to ] TEST_NAMES = [test['test_name'] for test in TEST_CONFIGS] + @pytest.mark.parametrize("config", TEST_CONFIGS, ids=TEST_NAMES) def test_run_simulation(assets_path, config): json_filename = config["json_filename"] diff --git a/testing_scripts/test_simulation.py b/testing_scripts/test_simulation.py index 5c7c845..63f45e8 100644 --- a/testing_scripts/test_simulation.py +++ b/testing_scripts/test_simulation.py @@ -14,6 +14,7 @@ ) from testing_scripts.bimp_diff_sim_tests import run_diff_res_simulation +from testing_scripts.test_batching_stats import remove_files from testing_scripts.test_update_state import _setup_sim_scenario_file DEFAULT_RESOURCE_CALENDARS_TIMER_WITH_TASK = [ @@ -264,6 +265,7 @@ def test_event_based_gateway_correct(assets_path): expected_timer_timedelta = datetime.timedelta(hours=4) only_four_h_events = df[df["activity"] == "4h"] _verify_activity_count_and_duration(only_four_h_events, 5, expected_timer_timedelta) + remove_files([sim_logs, sim_stats]) def _verify_activity_count_and_duration(activities, count, expected_activity_timedelta):